write any three PRINT statement and their description
Answers
Answered by
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