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 ja5;
- /**
- *
- * @author Administrator
- */
- public class JA5 {
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- // TODO code application logic here
- // Операторы управления
- // 1) if-else (условный оператор)
- // Условный оператор позволяет выполнить код в зависимости от условия
- if(20>10){
- System.out.println("20 больше 10");
- }
- //
- int a = 100;
- int b = 200;
- if(b>a){
- System.out.println("b больше чем a");
- }
- // использование необязательной конструкции else
- if(a>b){
- System.out.println("a>b");
- System.out.println("!!!!!!!!!!");
- }else{
- System.out.println("a<=b");
- System.out.println("OKKKKKKKKKKKKK");
- }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement