shovradas / teaching-java

0 stars 0 forks source link

Operators #4

Closed shovradas closed 3 years ago

shovradas commented 3 years ago

TUTORIALS

Read the following tutorials carefully and solve the problem below. Make sure you understand all the operators clearly.

PROBLEMS

Write a program that will utilize all available operators in java and print the result of corresponding operations.

Hints

System.out.println(10+20);
System.out.println(10-20);
System.out.println(10&&20);
...

SUBMISSION

Your submission should contain the following files:

shovradas commented 3 years ago

Good job! Looks like you have some confusion regarding some operators. Let's talk about it. @FarzanaPrity