Advertisement
sergAccount

Untitled

Sep 27th, 2020
917
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.91 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 myapp5;
  7.  
  8. public class MyApp5 {
  9.  
  10.     public static void main(String[] args) {
  11.         // TODO code application logic here
  12.         // операторы управления
  13.         // 2) for (оператор цикл)
  14.         // i - переменная цикла
  15.         for(int i=0; i<2; i = i + 1){
  16.             System.out.println("HELLO!");
  17.         }
  18.         // задача1
  19.         // вывести все числа от n до m кроме числа 0
  20.         // n,m - перменные типа int
  21.         int n = -5;
  22.         int m = 5;
  23.         for(int i = n; i<=m; i = i + 1){
  24.             if(i!=0){
  25.                 System.out.println(i);
  26.             }
  27.         }
  28.        
  29.     }
  30.    
  31. }
  32.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement