Answers for "multiplication program java"

0

multiplication program java

int i,k;
			Scanner sc = new Scanner(System.in);
			System.out.println("Enter the Number for the table: ");

			int n = sc.nextInt();
			for (i=1;i<=10;i++){
				 k = n * i;
				//n + "*" + c + " = " + (n*c))
				System.out.println(n + "*"+ i + " = " + k);	
			}
Posted by: Guest on June-23-2020

Code answers related to "multiplication program java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language