I'm in trouble with loops.what should I do?
It's little hard.
package com.codegym.task.task04.task0437;
/*
Triangle of eights
*/
public class Solution {
public static void main(String[] args) throws Exception {
//write your code here
for (int i = 0 ; i < 1 ; i ++) {
System.out.println(8) ;
} for (int j = 1 ; j < 10 ; j ++) {
System.out.println(8) ;
}
}
}