أكتب برنامج java يطلب من المستخدم إدخال رقمين, ثم يعرض له من هو العدد الأكبر بينهما, و في حال كانا متساويان سيعرض له أنهما كذلك
- برمجة جافا
- 2022-02-17
- jannatmohammed
الأجوبة
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);
int x, y;
System.out.print("Enter first number: ");
x = input.nextInt();
System.out.print("Enter second number: ");
y = input.nextInt();
if (x == y)
{
System.out.println("They are equal");
}
else
{
System.out.printf("The biggest number is '%s'\n", (x > y)?x :y);
}
}
}
القوائم الدراسية التي ينتمي لها السؤال