darius90

08. Java for ciklus növekvő

Jan 16th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.21 KB | None | 0 0
  1. class ForLoopExample {
  2.     public static void main(String args[]){
  3.          for(int i=0; i<11; i++){ //növekvő 10-ig
  4.              
  5.               System.out.println("The value of i is: "+i);
  6.          }
  7.     }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment