Snippets

Ettar Java Großes Ein mal Eins

Created by Ettar
class Test{
	public static void main(String[] args){
		for(int i=1;i<=20;i++){
			for(int d=1;d<=10;d++){
				System.out.print(i*d + " ");
			}
			System.out.println();
		}
	}
}

Comments (0)

HTTPS SSH

You can clone a snippet to your computer for local editing. Learn more.