Advertisement
sergAccount

Untitled

Aug 2nd, 2020
1,755
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.02 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.app2;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test {
  13.    
  14.     // метод main
  15.     // main + tab
  16.     public static void main(String[] args) {
  17.         // объявление локальной переменной
  18.         int a;  // int — тип переменной, a — имя переменной
  19.         a = 10;
  20.         // Объявление и присвоение.
  21.         int b = 10;
  22.         b = 10 + 20 + 30;
  23.         b = 50;
  24.         // sout+tab
  25.         // выводим значение переменной b на экран
  26.         System.out.println(b); // в скобках указываем имя переменной для вывода значения на экран
  27.         b = 60;
  28.         System.out.println(b);
  29.         System.out.println(a);
  30.        
  31.     }
  32. }
  33.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement