Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- package ProgrammingBasics2;
- import java.util.Scanner;
- public class toto6ot49 {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- for (int a = 6; a <= 44; a++) {
- for (int b = 5; b <= 45; b++) {
- for (int c = 4; c <= 46; c++) {
- for (int d = 3; d <= 47; d++) {
- for (int e = 2; e <= 48; e++) {
- for (int f = 1; f <= 49; f++) {
- System.out.printf("%d:%d:%d:%d:%d:%d%n:", a, b, c, d, e, f);
- }
- }
- }
- }
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement