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.app7;
- /**
- *
- * @author Admin
- */
- public class Test {
- // main+tab
- public static void main(String[] args) {
- //
- /*
- Задача 2:
- Объявить переменную m типа double.
- Присвоить переменной m определенное значение.
- Вывести на экран фразу "тяжелый", если значение переменной m>100
- Вывести на экран фразу "легкий", если значение переменной m<100
- */
- double m = 100;
- // System.out.println("");
- // System.out.print("");
- if(m>100){
- System.out.println("тяжелый");
- }
- if(m<100){
- System.out.println("легкий");
- }
- // if(m==100){
- // System.out.println("Nothing ...");
- // }
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement