+ 1
Answer the following
Explain the term arithmetical expression and arithmetical statement with an example
1 ответ
+ 3
example:
int a=2;
int b=3;
System.out.println(a+b);
//output:5
Explain the term arithmetical expression and arithmetical statement with an example