Write a Java program to print the result of the following operations
- برمجة جافا
- برمجة
- 2021-04-30
- razanmazen8711884270
الأجوبة
public class Exercise4 {
public static void main(String[] args) {
System.out.println(-5 + 8 * 6);
System.out.println((55+9) % 9);
System.out.println(20 + -3*5 / 8);
System.out.println(5 + 15 / 3 * 2 - 8 % 3);
}
}
Sample Output:
43 1 19 13
أسئلة مشابهة
القوائم الدراسية التي ينتمي لها السؤال