- 5
calculate the sum and output it
int beer = 64; int whiskey = 23; //calculate the sum and output it
4 Respuestas
+ 4
Read lesson 6 again – there is an example similar to this task
+ 2
Hi, what's your question?
To solve the task, print the output
0
Yes to solve the task and print the output
- 1
System.out.print(/* do arithmetical operation here */);
………
System.out.print(beer + whiskey);
Happy Coding 💗