fork download
  1. /* package whatever; // don't place package name! */
  2.  
  3. import java.util.*;
  4. import java.lang.*;
  5. import java.io.*;
  6.  
  7. /* Name of the class has to be "Main" only if the class is public. */
  8.  
  9.  
  10. class Car {
  11. // الخصائص Attributes
  12. String brand;
  13. String model;
  14. int year;
  15. double price;
  16.  
  17. // Constructor
  18. public Car(String brand, String model, int year, double price) {
  19. this.brand = brand;
  20. this.model = model;
  21. this.year = year;
  22. this.price = price;
  23. }
  24.  
  25. // عرض معلومات السيارة
  26. public void displayInfo() {
  27. System.out.println("اسم الشركة: " + brand);
  28. System.out.println("طراز السيارة: " + model);
  29. System.out.println("سنة الصنع: " + year);
  30. System.out.println("السعر: " + price);
  31. }
  32.  
  33. // دالة تصنيف السيارة حسب السعر
  34. public void checkStatus() {
  35. if (price >= 30000) {
  36. System.out.println("سيارة فخمة");
  37. }
  38. else if (price >= 15000 && price < 30000) {
  39. System.out.println("سيارة متوسطة");
  40. }
  41. else {
  42. System.out.println("سيارة اقتصادية");
  43. }
  44. }
  45. }
  46.  
  47. // الكلاس الرئيسي
  48. public class Main {
  49. public static void main(String[] args) {
  50.  
  51. // إنشاء كائنات
  52. Car c1 = new Car("Toyota", "Corolla", 2022, 25000);
  53. Car c2 = new Car("BMW", "X5", 2023, 55000);
  54. Car c3 = new Car("Kia", "Rio", 2020, 12000);
  55.  
  56. // عرض النتائج
  57. c1.displayInfo();
  58. c1.checkStatus();
  59. System.out.println(".....................");
  60.  
  61. c2.displayInfo();
  62. c2.checkStatus();
  63. System.out.println(".....................");
  64.  
  65. c3.displayInfo();
  66. c3.checkStatus();
  67. }
  68. }
  69.  
Success #stdin #stdout 0.16s 57904KB
stdin
Standard input is empty
stdout
اسم الشركة: Toyota
طراز السيارة: Corolla
سنة الصنع: 2022
السعر: 25000.0
سيارة متوسطة
.....................
اسم الشركة: BMW
طراز السيارة: X5
سنة الصنع: 2023
السعر: 55000.0
سيارة فخمة
.....................
اسم الشركة: Kia
طراز السيارة: Rio
سنة الصنع: 2020
السعر: 12000.0
سيارة اقتصادية