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 ja11;
- import javax.swing.JOptionPane;
- public class JA11 {
- //
- public static void main(String[] args) {
- // TODO code application logic here
- // имя_класса.имя_метода - для вывзова метода с модификатором static
- double res = MathUtil.calcRectArea(10, 200);
- System.out.println("res=" + res);
- // JOptionPane - имя класса
- // showMessageDialog - статический метод для вывода сообщения
- //JOptionPane.showMessageDialog(null, "HELLO JAVA!!!!!!!!!!!!!!!!!!!!!!!!!");
- //JOptionPane.showMessageDialog(null, "Привет мир!");
- //JOptionPane.showMessageDialog(null, "Площадь прямоугольника=" + res);
- // JOptionPane - имя класса
- // showInputDialog - статический метод для вывода сообщения и ввода информации в виде строки
- String result = JOptionPane.showInputDialog(null, "Введите значение!!!!", "Имя пользователя!!!!", 1);
- // result - значение полученное с помощью данного диалога
- System.out.println("result=" + result);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement