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 com.mycompany.ex11;
- /**
- *
- * @author student
- */
- public class Main {
- public static void main(String[] args) {
- // 6) do-while
- // int n = 10;
- // do {
- // System.out.println("n=" + n);
- // n--;
- // } while (n>10);
- // операторы управления: if-else, for, while, do-while, break, continue
- // Операторы сравнения: > < <= >= == !=
- int x = 0;
- if(x==0){
- System.out.println("x равен 0!");
- }
- if(x!=5){
- System.out.println("x не равен 5!");
- }
- /*
- Задача1
- Заданы переменные x1, x2.
- Присвоить значения данным переменным
- типа int.
- Вывести все значение между x1 и x2 включтельно
- кроме числа 0.
- */
- // 1.1 - используем оператор continue
- System.out.println("Задача1");
- // int x1 = -5, x2 = 5;
- // for (int i = x1; i <= x2; i++) {
- // if (i==0){
- // continue;
- // }
- // System.out.println(i);
- // }
- // 1.2 - используем только условный оператор
- int x1 = -5, x2 = 5;
- for (int i = x1; i <= x2; i++) {
- if (i!=0){
- System.out.println(i);
- }
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement