Advertisement
sergAccount

Untitled

Dec 5th, 2020
777
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.59 KB | None | 0 0
  1. /*
  2.  * To change this license header, choose License Headers in Project Properties.
  3.  * To change this template file, choose Tools | Templates
  4.  * and open the template in the editor.
  5.  */
  6. package ja7;
  7.  
  8. public class JA7 {
  9.  
  10.     /**
  11.      * @param args the command line arguments
  12.      */
  13.     public static void main(String[] args) {
  14.         // TODO code application logic here
  15.         // Операторы управления
  16.         // 2) for (цикл for)
  17.         for(int i=0; i<10; i = i + 1){
  18.             System.out.println("HELLO JAVA!");            
  19.         }        
  20.     }
  21.    
  22. }
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement