Count to ten
Sun Dec 08 2024 11:10:57 GMT+0000 (Coordinated Universal Time)
Saved by
@John_Almer
package countstoten;
/**
*
* @author Almer
*/
public class CountsToTen {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
for (int i = 1; i <= 10; i++) {
System.out.println(i);
}
}
}
content_copyCOPY
Comments