ISC CHEMISTRY PROJECT Get link Facebook X Pinterest Email Other Apps October 17, 2022 ISC CHEMISTRY PROJECTON AMINO ACIDSTO view pdf CLICK HERE DOWNLOAD Get link Facebook X Pinterest Email Other Apps Comments
ISC PHYSICS PROJECT January 12, 2023 ISC PHYSICS PROJECT ON THERMODYNAMICS TO GET THE PDF CLICK ON THIS LINK- THERMODYNAMICS Read more
November 06, 2022 Java program to find table of any number program: import java.util.*; class table { Scanner sc=new Scanner(System.in); int n; void accept() { System.out.println("enter the number to print its table"); n=sc.nextInt(); } void table() { String s=Integer.toString(n);// covert integer to string for(int i=1;i<=10;i++) { String x=Integer.toString(i);// covert integer to string System.out.println(s+ " x " +x+ " = " +n*i); } } void main() { table ob=new table(); ob.accept(); ob.table(); } } sample output: Read more
Comments
Post a Comment