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 helloworld;
- /**
- * Ctrl + S - сохранение и компиляция кода
- * Shift + F6 - выполнение текущего файла
- *
- *
- * @author Student1
- */
- public class HelloWorld {
- /**
- * @param args the command line arguments
- */
- public static void main(String[] args) {
- // TODO code application logic here
- // sout + tab
- //System.out.println("Hello World!");
- //System.out.println("Hello World222222!");
- // объявляем переменную
- boolean b;
- boolean a;
- boolean c;
- // присваиваем значение переменной
- b = false;
- System.out.println("b=" + b);
- // присваиваем значение переменной
- b = true;
- System.out.println("b=" + b);
- // > < >= <=
- b = 10>20;
- System.out.println("b=" + b);
- b = 20>10;
- System.out.println("b=" + b);
- a = true;
- // оператор сравнения: ==
- c = (a==b);
- System.out.println("c=" + c);
- int i;
- i = 100;
- int i1 = 101;
- System.out.println("i=" + i);
- System.out.println("i1=" + i1);
- double value = 20.056;
- System.out.println("value=" + value);
- // +, -, *, /, % - опертаторы для работы с числовыми типами
- long nameOfParam = 16;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement