Computer Science, asked by singhumabharti, 5 hours ago

write any three PRINT statement and their description​

Answers

Answered by mrittika3278
3

Answer:

Do mark me the brainliest!

Explanation:

System.out.print("one");

System.out.print("two");

System.out.println("three");

onetwothree

int x = 3;

int y = 5;

System.out.println(x + " and " + y + " is " + (x + y));

int x = 3;

int y = 5;

System.out.println(x + " and " + y + " is " + x + y);

Similar questions