0
Is it true in java?
int a=42; int b=70; system.print(a); system.print(a×b);
3 ответов
+ 6
Morteza Mohammadi Last 2 stmts should be like :
System.out.print(a);
System.out.print(a*b);
Btw Pls clarify your Question ...
+ 5
What's your question there's no any boolean property or which print it, and even you don't format it properly
Must be ```System.out.print();"
+ 1
You are right. There are mistakes in my code. I reformed it and it worked. Thank you.