Computer Science, asked by shreyosidas20, 8 months ago

wap to print the following numbers 999,728,511,342,215,124 in Java program​

Answers

Answered by jitekumar4201
0

Print the following numbers 999,728,511,342,215,124

Explanation:

public class Main

{

public static void main(String[] args) {

 System.out.println("999,728,511,342,215,124");

}

}

if you want to print a string ex("HELLO ") or a number string("1,2,3,4,5")than you have to go

Inside the main() method, we can use the println() method to print a line of text to the screen:

System.out.println("HEllO ");

and dont forget about the colam(;) in the end

Attachments:
Answered by Aadya1234T
0

Answer:

Hope it helps you....

PLEASE MARK ME AS BRAINLIEST.......

Attachments:
Similar questions