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.app4;
- public class Test {
- //
- public static void main(String[] args) {
- //
- System.out.println("Операторы управления");
- // Операторы управления
- // 1) if-else (условный оператор)
- // позволяет выполнить действие в зависимости от условия (разветвить выполнение кода)
- // 1.1) if
- if(20>10){
- System.out.println("20 больше 10");
- System.out.println("!!!");
- }
- boolean a = false;
- if(a){
- System.out.println("a = TRUE !!!");
- }
- boolean b = false;
- if(b){
- System.out.println("b = TRUE!!!");
- } else {
- System.out.println("b = FALSE!!!");
- System.out.println("sfaasfsaf!!!");
- System.out.println("dfasfasf");
- int r = 5;
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement