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.ex12;
- /**
- *
- * @author student
- */
- public class Main {
- //
- public static void main(String[] args) {
- // Тернарный оператор (сокращенный условный оператор if-else)
- // общая форма тернарного оператора
- // выражение(условие) ? выражение1 : выражение2;
- System.out.println("IF-ELSE");
- boolean b = true;
- if(b){
- System.out.println("b - истина");
- }else{
- System.out.println("b - ложь");
- }
- //
- System.out.println("ТЕРНАРНЫЙ ОПЕРАТОР");
- // String result = (b) ? "b - истина" : "b - ложь";
- // System.out.println(result);
- System.out.println(b ? "b - истина" : "b - ложь");
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement