Mohanad Mohand نشر 3 مارس 2021 أرسل تقرير نشر 3 مارس 2021 (معدل) A class which is called Employee consists of salary and bounce as a variables, setSalary(double salary) to initialize the variable, getSalary() to get the salary, setBounce(double b) to initialize bounce value, getyearSalary() to get the year salary. Your java program should have a main class, which is called Company to create an object called p of programmer class, and then calculate programmer salary, total salary, and year salary. Note: Suppose the bounce of programmer is 10% of his basic salary ممكن توضيح كيفية حل السؤال ؟ تم التعديل في 4 مارس 2021 بواسطة Wael Aljamal توضيح السؤال 1 اقتباس
0 Wael Aljamal نشر 3 مارس 2021 أرسل تقرير نشر 3 مارس 2021 المطلوب تعريف صنف Employee و إعطائه خواص و طرق كما هو موضح ، مثل الراتب و طريق get - set للتعامل مع البيانات داخله ثم إنشاء غرض منه Programmer .. الصنف Employee .. عليك إكمال باقِ الوظائف.. public class Employee{ private double salary; private double bounce; //setters public void setSalary(double salary){ this.salary=salary; } public void setBounce(double bounce){ this.bounce=bounce; } //TODO //getters public double getSalary(){ return salary; } public double getBounce(){ return bounce; } public void getYearlySalary(){ return salary*12; } //TODO } الدالة الرئيسية: import java.util.Scanner; public class Company{ // اسم الصنف الأساسي/ البرنامج public staic void main(String[] args){ Scanner sc = new Scanner(System.in); Employee emp = new Employee(); // تعريف موظف جديد يمكنك تسميته programmer System.out.println("Enter salary: "+ setSalary(sc.nextDouble())); // TODO استدعاء الدوال } } عليك الاعتماد على نفسك، إن الأمور المتبقية هي مكررة مما سبق عليك الفهم و محاولة إعادة التطبيق 1 اقتباس
السؤال
Mohanad Mohand
A class which is called Employee consists of salary and bounce as a variables,
setSalary(double salary) to initialize the variable, getSalary() to get the salary,
setBounce(double b) to initialize bounce value, getyearSalary() to get the year salary. Your
java program should have a main class, which is called Company to create an object called p of
programmer class, and then calculate programmer salary, total salary, and year salary.
Note: Suppose the bounce of programmer is 10% of his basic salary
ممكن توضيح كيفية حل السؤال ؟
تم التعديل في بواسطة Wael Aljamalتوضيح السؤال
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.