Yikkeess.
It seems it may be a stupid question but look, I put in the correct code...
and...
AND...
Look at my code... and it will not work! WhAt on earth is the problem?!
CODE GYM MUST HAVE MAD CHECKING TECHNOLOGY!
package com.codegym.task.task04.task0430;
/*
1 to 10
*/
import java.io.*;
public class Solution {
public static void main(String[] args) throws Exception {
int count = 11;
while (count > 1){
System.out.println(count);
count--;
}
}
}