Java programming to Print integers
class Integers { public static void main(String[] arguments) { int c; //declaring a variable
/* softwaresetups.com */ for (c = 1; c <= 10; c++) { System.out.println(c); } } }
0 comments:
Post a Comment