0
Please Help 🥲 I want to print value of a and b in a single println (in java)
i don't want to add them just print them by using a single System.out.println https://code.sololearn.com/csPy9dya6Lo7/?ref=app
2 Antworten
+ 2
This should do
System.out.println(a+" "+b);
0
Avinesh thanks 😊