Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * To change this license header, choose License Headers in Project Properties.
- * To change this template file, choose Tools | Templates
- * and open the template in the editor.
- */
- package myapp5;
- public class MyApp5 {
- public static void main(String[] args) {
- // TODO code application logic here
- // операторы управления
- // 2) for (оператор цикл)
- // i - переменная цикла
- for(int i=0; i<2; i = i + 1){
- System.out.println("HELLO!");
- }
- // задача1
- // вывести все числа от n до m кроме числа 0
- // n,m - перменные типа int
- int n = -5;
- int m = 5;
- for(int i = n; i<=m; i = i + 1){
- if(i!=0){
- System.out.println(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement