Advertisement
sergAccount

Untitled

Aug 2nd, 2020
1,558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.31 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 com.mycompany.app5;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test {    
  13.     //
  14.     public static void main(String[] args) {
  15.         //          
  16.         System.out.println("Операторы управления");
  17.         // Операторы управления
  18.         // Циклы
  19.         // цикл позволяет выполнить определенное действие несколько раз (в зависимости от условия)
  20.         // 1) for (цикл for)        
  21. //        for(int i = 0; i<5; i = i + 1){ // i = i + 1
  22. //            
  23. //        }
  24.         System.out.println("Цикл for");        
  25.         // 1.1) цикл выводит числа от 0 до 4
  26.         for(int i = 0; i<5; i++){ // i = i + 1  
  27.             System.out.println(i);
  28.         }
  29.         System.out.println("ok");        
  30.         // 1.2) используем несколько переменных цикла: i, j  
  31.         for(int i = 0, j = -10; i<5; i++, j--){ // i = i + 1  
  32.             System.out.println(i);
  33.             System.out.println(j);
  34.         }                        
  35.     }
  36. }
  37.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement