Advertisement
sergAccount

Untitled

Jun 26th, 2021
900
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.99 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.ex12;
  7.  
  8. /**
  9.  *
  10.  * @author student
  11.  */
  12. public class Main {
  13.     //
  14.     public static void main(String[] args) {
  15.        // Тернарный оператор (сокращенный условный оператор if-else)
  16.        // общая форма тернарного оператора
  17.        // выражение(услоsвие) ? выражение1 : выражение2;
  18.        System.out.println("IF-ELSE");
  19.        boolean b = true;
  20.        if(b){
  21.            System.out.println("b - истина");
  22.        }else{
  23.            System.out.println("b - ложь");
  24.        }
  25.        //
  26.        System.out.println("ТЕРНАРНЫЙ ОПЕРАТОР");
  27.        String result = (b) ? "b - истина" : "b - ложь";
  28.        System.out.println(result);
  29.     }
  30. }
  31.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement