write the number that is 100 less
You write a number, not wright! It would be written as 75% of [the number].
To write 7 as an ordinal number, you would write it as "seventh."
1.6 is not a whole number so you cannot write it "in whole number".
How can i write 6005,34
import java.io.*; public class Jerry { public static void main(String as[]) throws IOException { int k=Integer.parseInt(as[0]); int n=k; int d=0,s=0; while(n>0) { d=n%10; s=s+(d*d*d); n=n/10; } if(k==s) System.out.println("Armstrong number"); else System.out.println("not Armstrong number"); } }
Steven Armstrong = ستيفن ارمسترونغ
write a note on event driven programming
Without programming languages you couldn't write (system) programs.
no ;)
with a pen
import java.io.*; class Armstrong { public static void main()throws IOException { BufferedReader in=new BufferedReader(new InputStreamReader(System.in)); System.out.println("Enter a number"); int a=Integer.parseInt(in.readLine()); int n1=a,rev=0,d=0; while(a!=0) { d=a%10; rev=rev+d*d*d; a=a/10; } if(rev==n1) System.out.println("It is a armstrong number "); else System.out.println("It is not a armstrong number "); } }
yes
Neil Armstrong landed on the moon some ideas what you could do write a diary for Neil Armstrong for the day he landed on the Moon could include emotions or a description and information for on the journey
by using this we can write a coding for operating systems
1)Socket 2)Server Socket Server socket is used for normal two-way socket communication. Socket class allows us to read and write through the sockets. getInputStream() and getOutputStream() are the two methods available in socket class.
For first find an example program.