Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // 17.04.2021
- import java.util.Scanner;
- public class Ex04 {
- public static void main(String[] args) {
- // TODO Auto-generated method stub
- Scanner in = new Scanner(System.in);
- double a; // שכר עבודה ללא בונוס
- double bonus; // בונוס חד פעמי לעובד
- double total; // שכר עם בונוס
- // קליטת השכר מהמשתמש
- System.out.print("הכנס משכורת חודשית: ");
- a = in.nextDouble();
- // עיבוד נתונים
- bonus = 112.0 / 100; // bonus = 1.12;
- total = a * bonus; // total = a * 112/100;
- // הדפסת תוצאות
- System.out.println("בונוס = " + bonus);
- System.out.println("שכר ללא בונוס: " + a);
- System.out.println("שכר כולל בונוס: " + total);
- in.close();
- }
- }
Add Comment
Please, Sign In to add comment