码迷,mamicode.com
首页 > 其他好文 > 详细

课后作业

时间:2015-10-07 14:41:07      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

1.编写一个程序,用户输入两个数,求出其加减乘除,并用消息框显示计算结果。

 

import javax.swing.JOptionPane;

public class Da

{     

           public static void main(String[] args) 

         {     

                int n1=Integer.parseInt(JOptionPane.showInputDialog("Input number 1: "));    

                int n2=Integer.parseInt(JOptionPane.showInputDialog("Input number 2: ")) ;   //获取从JOptionPane.showInputDialog对话框中输入的值,然后转换为int类型    

                JOptionPane.showMessageDialog(null,"The sum is:"+(n1+n2)           +"\n"+"The difference is:"+(n1-n2)           +"\n"+"The product is:"+(n1*n2)           +"\n"+"The division is:"+(n1/n2));   

  }

2.随机验证码。

 

public class Work

{    

      public static void main(String[] args) 

        {        

              Scanner scanner = new Scanner(System.in);

              String str = null;     

              while((str=scanner.nextLine())!=null)

             {        

                    if(str.equals("exit"))

                       {                        break;}    

               System.out.println(str);

              }                 

         }      

}

 

课后作业

标签:

原文地址:http://www.cnblogs.com/liang123222/p/4858649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!