Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.util.Scanner;
- public class Scholarship {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- double income = Double.parseDouble(scanner.nextLine());
- double averageSuccess = Double.parseDouble(scanner.nextLine());
- double minSalary = Double.parseDouble(scanner.nextLine());
- double socialScholarship = minSalary * 0.35;
- double excellentScholarship = averageSuccess * 25;
- if (averageSuccess >= 5.5) {
- if (socialScholarship > excellentScholarship) {
- System.out.printf("You get a Social scholarship %.0f BGN", Math.floor(socialScholarship));
- } else {
- System.out.printf("You get a scholarship for excellent results %.0f BGN", Math.floor(excellentScholarship));
- }
- }else if(averageSuccess >= 4.5 && income <= minSalary){
- System.out.printf("You get a Social scholarship %.0f BGN", Math.floor(socialScholarship));
- }else{
- System.out.println("You cannot get a scholarship!");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement