Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. public class ForDemo {
  2. public static void main(String[] args) {
  3. int count;
  4. For( count=0; count<5; count =count+1)
  5. System.out.println("Значение счетчика:" + count);
  6. System.out.println("Готово!");
  7. }
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement