Skip to content

Instantly share code, notes, and snippets.

@folivetti
Created March 5, 2017 17:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save folivetti/521097bf7b9046966062b59768f8385f to your computer and use it in GitHub Desktop.
Save folivetti/521097bf7b9046966062b59768f8385f to your computer and use it in GitHub Desktop.
import java.util.Scanner;
class Main {
public static void main(String[] args) {
int x, i;
Scanner leitor = new Scanner(System.in);
x = leitor.nextInt();
for (i=1; i<=10; i++) {
System.out.println(i+" x "+x+" = " + (i*x));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment