Compare commits
	
		
			2 Commits
		
	
	
		
			master
			...
			ІО-24/30-Ф
		
	
	| Author | SHA1 | Date | |
|---|---|---|---|
| 
						 | 
					a7a259d3c6 | ||
| 
						 | 
					8b6da131a0 | 
							
								
								
									
										96
									
								
								lab1 fedoniuk
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										96
									
								
								lab1 fedoniuk
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,96 @@
 | 
			
		||||
import java.util.Scanner;
 | 
			
		||||
 | 
			
		||||
public class lab1 {
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        int C2, C3, C5;
 | 
			
		||||
        var C7 = 0;
 | 
			
		||||
 | 
			
		||||
        Scanner id = new Scanner(System.in);
 | 
			
		||||
        System.out.print("Enter the student's ID number: ");
 | 
			
		||||
        int idbook = id.nextInt();
 | 
			
		||||
 | 
			
		||||
        C2 = idbook % 2;
 | 
			
		||||
        C3 = idbook % 3;
 | 
			
		||||
        C5 = idbook % 5;
 | 
			
		||||
        C7 = idbook % 7;
 | 
			
		||||
 | 
			
		||||
        String[] oper1 = {"+", "-"};
 | 
			
		||||
        String[] oper2 = {"*", "/", "%", "+", "-"};
 | 
			
		||||
        String[] oper3 = {"byte", "short", "int", "long", "char", "float", "double"};
 | 
			
		||||
 | 
			
		||||
        int C = C3;
 | 
			
		||||
 | 
			
		||||
        String O1 = oper1[C2];
 | 
			
		||||
        String O2 = oper2[C5];
 | 
			
		||||
        String O3 = oper3[C7];
 | 
			
		||||
 | 
			
		||||
        System.out.println("C2 is: " + C2 + ", operation is: " + O1);
 | 
			
		||||
        System.out.println("C3 = " + C);
 | 
			
		||||
        System.out.println("C5 is: " + C5 + ", operation is: " + O2);
 | 
			
		||||
        System.out.println("C7 is: " + C7 + ", Type of indexes i and j is: " + O3);
 | 
			
		||||
 | 
			
		||||
        double i = 0;
 | 
			
		||||
        double j = 0;
 | 
			
		||||
        System.out.println("\nEnter a values for lower limits (i and j) in the "+ O3+" type: ");
 | 
			
		||||
        switch (O3) {
 | 
			
		||||
            case "byte" -> {
 | 
			
		||||
                i = id.nextByte();
 | 
			
		||||
                j = id.nextByte();
 | 
			
		||||
            }
 | 
			
		||||
            case "short" -> {
 | 
			
		||||
                i = id.nextShort();
 | 
			
		||||
                j = id.nextShort();
 | 
			
		||||
            }
 | 
			
		||||
            case "int" -> {
 | 
			
		||||
                i = id.nextInt();
 | 
			
		||||
                j = id.nextInt();
 | 
			
		||||
            }
 | 
			
		||||
            case "long" -> {
 | 
			
		||||
                i = id.nextLong();
 | 
			
		||||
                j = id.nextLong();
 | 
			
		||||
            }
 | 
			
		||||
            case "char" -> {
 | 
			
		||||
                i = id.next().charAt(0);
 | 
			
		||||
                j = id.next().charAt(0);
 | 
			
		||||
            }
 | 
			
		||||
            case "float" -> {
 | 
			
		||||
                i = id.nextFloat();
 | 
			
		||||
                j = id.nextFloat();
 | 
			
		||||
            }
 | 
			
		||||
            case "double" -> {
 | 
			
		||||
                i = id.nextDouble();
 | 
			
		||||
                j = id.nextDouble();
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        System.out.println("The value of the created variables is: " + i + " and " + j);
 | 
			
		||||
        System.out.println("Enter values for top limits (n and m):");
 | 
			
		||||
        int n, m;
 | 
			
		||||
        n = id.nextInt();
 | 
			
		||||
        m = id.nextInt();
 | 
			
		||||
 | 
			
		||||
        double sum = 0, res = 0, res2 = 0;
 | 
			
		||||
 | 
			
		||||
        if ((O1.equals("-") && i + n >= C && i <= C) || i > n || j > m || (C == 0 && i == 0)) {
 | 
			
		||||
            System.out.println("Incorrect input, try another values");
 | 
			
		||||
        } else {
 | 
			
		||||
            for (double a = i; a <= n; a++) {
 | 
			
		||||
                for (double b = j; b <= m; b++) {
 | 
			
		||||
                    switch (O1) {
 | 
			
		||||
                        case "+" -> res = a + C;
 | 
			
		||||
                        case "-" -> res = a - C;
 | 
			
		||||
                    }
 | 
			
		||||
                    switch (O2) {
 | 
			
		||||
                        case "+" -> res2 = a + b;
 | 
			
		||||
                        case "-" -> res2 = a - b;
 | 
			
		||||
                        case "*" -> res2 = a * b;
 | 
			
		||||
                        case "/" -> res2 = a / b;
 | 
			
		||||
                        case "%" -> res2 = a % b;
 | 
			
		||||
                    }
 | 
			
		||||
                    sum += res2 / res;
 | 
			
		||||
                }
 | 
			
		||||
            }
 | 
			
		||||
            System.out.println("Sum is: " + sum);
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,35 +1,8 @@
 | 
			
		||||
public class Main {
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        System.out.println(args[2]);
 | 
			
		||||
        System.out.println(args[1]);
 | 
			
		||||
        System.out.println("Hello world!");
 | 
			
		||||
//        System.out.println(1);
 | 
			
		||||
 | 
			
		||||
        int a = 1;
 | 
			
		||||
        int b = 2;
 | 
			
		||||
        int c = 1;
 | 
			
		||||
        int d = 1;
 | 
			
		||||
 | 
			
		||||
        System.out.println(2&1);
 | 
			
		||||
        System.out.println(2|1);
 | 
			
		||||
        int aa = 2;
 | 
			
		||||
 | 
			
		||||
        /*if (aa) {
 | 
			
		||||
 | 
			
		||||
        }*/
 | 
			
		||||
 | 
			
		||||
//        System.out.println("a"&"b");
 | 
			
		||||
        System.out.println('a'&'b');
 | 
			
		||||
 | 
			
		||||
        if ((a > b) & MyBooleanMethod()) {
 | 
			
		||||
            System.out.println("?????????????????????????");
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    static boolean MyBooleanMethod() {
 | 
			
		||||
        System.out.println("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!");
 | 
			
		||||
        return true;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void myFunction() {
 | 
			
		||||
 | 
			
		||||
@ -2,8 +2,4 @@ package encapsulationInheritancePolymorphism.inheritance;
 | 
			
		||||
 | 
			
		||||
public class ElectricEngine extends Engine {
 | 
			
		||||
    private String batteryType;
 | 
			
		||||
 | 
			
		||||
    /*private class Engine {
 | 
			
		||||
        private int power;
 | 
			
		||||
    }*/
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,5 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.inheritance;
 | 
			
		||||
 | 
			
		||||
public class FuelEngine extends Engine {
 | 
			
		||||
    private String fuelType;
 | 
			
		||||
}
 | 
			
		||||
@ -2,7 +2,6 @@ package encapsulationInheritancePolymorphism.inheritance;
 | 
			
		||||
 | 
			
		||||
public class Main {
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        ElectricEngine electricEngine = new ElectricEngine(); // створення нового об'єкту (екземпляру) класу ElectricEngine
 | 
			
		||||
        FuelEngine fuelEngine = new FuelEngine();
 | 
			
		||||
        ElectricEngine electricEngine = new ElectricEngine();
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
@ -1,14 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism;
 | 
			
		||||
 | 
			
		||||
public class ElectricEngine extends Engine {
 | 
			
		||||
    private String batteryType;
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public int getPower() {
 | 
			
		||||
        return 20;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /*private class Engine {
 | 
			
		||||
        private int power;
 | 
			
		||||
    }*/
 | 
			
		||||
}
 | 
			
		||||
@ -1,9 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism;
 | 
			
		||||
 | 
			
		||||
public class Engine {
 | 
			
		||||
    private int power;
 | 
			
		||||
 | 
			
		||||
    public int getPower() {
 | 
			
		||||
        return power;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,10 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism;
 | 
			
		||||
 | 
			
		||||
public class FuelEngine extends Engine {
 | 
			
		||||
    private String fuelType;
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public int getPower() {
 | 
			
		||||
        return 50;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,38 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism;
 | 
			
		||||
 | 
			
		||||
/*import encapsulationInheritancePolymorphism.inheritance.ElectricEngine;
 | 
			
		||||
import encapsulationInheritancePolymorphism.inheritance.FuelEngine;*/
 | 
			
		||||
 | 
			
		||||
public class Main {
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        /*encapsulationInheritancePolymorphism.inheritance.*/ElectricEngine electricEngine = new ElectricEngine(); // створення нового об'єкту (екземпляру) класу ElectricEngine
 | 
			
		||||
        /*encapsulationInheritancePolymorphism.inheritance.*/FuelEngine fuelEngine = new FuelEngine();
 | 
			
		||||
 | 
			
		||||
        Engine engine1 = fuelEngine;
 | 
			
		||||
 | 
			
		||||
        Engine[] engines = {
 | 
			
		||||
                electricEngine,
 | 
			
		||||
                fuelEngine
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        for (Engine engine : engines) {
 | 
			
		||||
            System.out.println(engine.getPower());
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        /*for (int i = 0; i < engines.length; i++) {
 | 
			
		||||
            System.out.println(engines[i].getPower());
 | 
			
		||||
        }*/
 | 
			
		||||
 | 
			
		||||
//        +
 | 
			
		||||
        int a = 1;
 | 
			
		||||
        int b = 1;
 | 
			
		||||
        int c = a + b;
 | 
			
		||||
        System.out.println(c);
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
        String sA = "1";
 | 
			
		||||
        String sB = "1";
 | 
			
		||||
        String sC = sA + sB;
 | 
			
		||||
        System.out.println(sC);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,19 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism.enhanced;
 | 
			
		||||
 | 
			
		||||
public class ElectricEngine extends Engine {
 | 
			
		||||
    private String batteryType;
 | 
			
		||||
    private int chargeLevel = 9;
 | 
			
		||||
    private int criticalChargeLevel = 10;
 | 
			
		||||
    private float coefficientCriticalPowerCut = 0.1f;
 | 
			
		||||
 | 
			
		||||
    @Override
 | 
			
		||||
    public int getPower() {
 | 
			
		||||
        return chargeLevel > criticalChargeLevel
 | 
			
		||||
                ? super.getPower()
 | 
			
		||||
                : (int) (super.getPower() * coefficientCriticalPowerCut);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    /*private class Engine {
 | 
			
		||||
        private int power;
 | 
			
		||||
    }*/
 | 
			
		||||
}
 | 
			
		||||
@ -1,9 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism.enhanced;
 | 
			
		||||
 | 
			
		||||
public class Engine {
 | 
			
		||||
    private int power = 100;
 | 
			
		||||
 | 
			
		||||
    public int getPower() {
 | 
			
		||||
        return power;
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,10 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism.enhanced;
 | 
			
		||||
 | 
			
		||||
public class FuelEngine extends Engine {
 | 
			
		||||
    private String fuelType;
 | 
			
		||||
 | 
			
		||||
    /*public int getPower() {
 | 
			
		||||
        return 50;
 | 
			
		||||
    }*/
 | 
			
		||||
 | 
			
		||||
}
 | 
			
		||||
@ -1,28 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism.enhanced;
 | 
			
		||||
 | 
			
		||||
/*import encapsulationInheritancePolymorphism.inheritance.ElectricEngine;
 | 
			
		||||
import encapsulationInheritancePolymorphism.inheritance.FuelEngine;*/
 | 
			
		||||
 | 
			
		||||
public class Main {
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        /*encapsulationInheritancePolymorphism.inheritance.*/
 | 
			
		||||
        ElectricEngine electricEngine = new ElectricEngine(); // створення нового об'єкту (екземпляру) класу ElectricEngine
 | 
			
		||||
        /*encapsulationInheritancePolymorphism.inheritance.*/
 | 
			
		||||
        FuelEngine fuelEngine = new FuelEngine();
 | 
			
		||||
 | 
			
		||||
        Engine engine1 = fuelEngine;
 | 
			
		||||
 | 
			
		||||
        Engine[] engines = {
 | 
			
		||||
                electricEngine,
 | 
			
		||||
                fuelEngine
 | 
			
		||||
        };
 | 
			
		||||
 | 
			
		||||
        for (Engine engine : engines) {
 | 
			
		||||
            System.out.println(engine.getPower());
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        /*for (int i = 0; i < engines.length; i++) {
 | 
			
		||||
            System.out.println(engines[i].getPower());
 | 
			
		||||
        }*/
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
@ -1,17 +0,0 @@
 | 
			
		||||
package encapsulationInheritancePolymorphism.polymorphism.overload;
 | 
			
		||||
 | 
			
		||||
public class MyClassForOverloadExample {
 | 
			
		||||
    void myMethod(int a) {
 | 
			
		||||
        System.out.println("Integer: " + a);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    void myMethod(double a) {
 | 
			
		||||
        System.out.println("Double: " + a);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    public static void main(String[] args) {
 | 
			
		||||
        MyClassForOverloadExample overload = new MyClassForOverloadExample();
 | 
			
		||||
        overload.myMethod(1);
 | 
			
		||||
        overload.myMethod(0.1);
 | 
			
		||||
    }
 | 
			
		||||
}
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user