“Multiplikationstabelle in Java” Code-Antworten

Multiplikationstabelle in Java

public class MultiplicationTable {

    public static void main(String[] args) {

        int num = 5;
        for(int i = 1; i <= 10; ++i)
        {
            System.out.printf("%d * %d = %d \n", num, i, num * i);
        }
    }
}
Different Dragonfly

Java -Programm für Multiplikationstabelle

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);	
			}
Lively Lion

Ähnliche Antworten wie “Multiplikationstabelle in Java”

Fragen ähnlich wie “Multiplikationstabelle in Java”

Weitere verwandte Antworten zu “Multiplikationstabelle in Java” auf Java

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen