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.app2;
- /**
- *
- * @author Admin
- */
- public class Test {
- // метод main
- // main + tab
- public static void main(String[] args) {
- // объявление локальной переменной
- int a; // int — тип переменной, a — имя переменной
- a = 10;
- // Объявление и присвоение.
- int b = 10;
- b = 10 + 20 + 30;
- b = 50;
- // sout+tab
- // выводим значение переменной b на экран
- System.out.println(b); // в скобках указываем имя переменной для вывода значения на экран
- b = 60;
- System.out.println(b);
- System.out.println(a);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement