Advertisement
sergAccount

Untitled

Aug 9th, 2020
1,040
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 1.14 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.app7;
  7.  
  8. /**
  9.  *
  10.  * @author Admin
  11.  */
  12. public class Test {
  13.    
  14.     // main+tab
  15.     public static void main(String[] args) {
  16.         //
  17.         /*
  18.         Задача 2:
  19.         Объявить переменную m типа double.
  20.         Присвоить переменной m определенное значение.
  21.         Вывести на экран фразу "тяжелый", если значение переменной m>100
  22.         Вывести на экран фразу "легкий", если значение переменной m<100
  23.         */
  24.         double m = 100;
  25.         // System.out.println("");
  26.         // System.out.print("");
  27.         if(m>100){
  28.             System.out.println("тяжелый");
  29.         }
  30.         if(m<100){
  31.             System.out.println("легкий");
  32.         }
  33. //        if(m==100){
  34. //            System.out.println("Nothing ...");
  35. //        }
  36.     }    
  37. }
  38.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement