[All Math library Programs From APC Class 9] import java.util.Scanner; class Q1{ public static void main(String args[]){ Scanner sc=new Scanner(System.in); System.out.println("Enter three numbers:"); int a = sc.nextInt(); int b = sc.nextInt(); int c = sc.nextInt(); int g = Math.max(a,Math.max(b,c)); //greatest int s = Math.min(a,Math.min(b,c)); //smallest System.out.println("The greatest is:"+g); System.out.println("The smallest is:"+s); } } import java.util.Scanner; class Q2{ public static void main(String args[]){ Scanner sc=new Scanner(System.in); System.out.println("Enter the perpendicular:"); int p = sc.nextInt...
All Solved Program and question papers for ICSE, ISC , CBSE and WBCHSE WB Board. Number 1 Programming & Coding classes in West Bengal.