0
What is wrong with this program?
public class Program { public static void main(String[] args) { for (int yes = 8; yes <= 10; yes++ ) System.out.println("Wow"); } } }
1 ответ
+ 4
you have one extra curly bracket } , delete one and your code will work just fine.