ISC PHYSICS PROJECT Get link Facebook X Pinterest Email Other Apps January 12, 2023 ISC PHYSICS PROJECTON THERMODYNAMICSTO GET THE PDF CLICK ON THIS LINK-THERMODYNAMICS Get link Facebook X Pinterest Email Other Apps Comments
ISC CHEMISTRY PROJECT October 17, 2022 ISC CHEMISTRY PROJECT ON AMINO ACIDS TO view pdf CLICK HERE DOWNLOAD 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