Level 1 & 2 More Programs

This commit is contained in:
2021-06-07 10:35:48 +05:30
parent 688319db00
commit f56d525b45
9 changed files with 204 additions and 3 deletions

27
ThreeInteger.java Normal file
View File

@@ -0,0 +1,27 @@
// Write a Java program that accepts three integers from the user and return
// true if the second number is greater than first number and third number
// is greater than second number. If "abc" is true second number does not
// need to be greater than first number
import java.util.*;
public class ThreeInteger {
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Input the first number : ");
int x = in.nextInt();
System.out.print("Input the second number: ");
int y = in.nextInt();
System.out.print("Input the third number : ");
int z = in.nextInt();
System.out.print("The result is: "+test(x, y, z,true));
System.out.print("\n");
}
public static boolean test(int p, int q, int r, boolean xyz) {
if(xyz)
return (r > q);
return (q > p && r > q);
}
}