zoukankan      html  css  js  c++  java
  • 黄宗禹9.11作业

    2.6
    import java.util.Scanner;
           public class test
    {
           public static void main(String[] args)
       {
                  int a;
                  Scanner input=new Scanner(System.in);
                  System.out.print("Enter a number between 0-1000:");
                  int b=input.nextInt();
            if(b >= 0 && b <= 1000)
            {
                  a= b%10 + b/10%10 + b/100%10 +b/1000;
                  System.out.println("Sum of several numbers "+a);
            }
            else
            {
               System.out.println("Error!");
            }
       }
    }







    2.15


    import java.util.Scanner;

    public class test
    {
        public static void main(String[] args)
        {
            Scanner input=new Scanner(System.in);
            double x1,x2,y1,y2;
            System.out.println("Enter the x1 ");
            x1 = Double.valueOf(input.nextInt());
            System.out.println("Enter the y1 ");
            y1 = Double.valueOf(input.nextInt());
            System.out.println("Enter the x2 ");
            x2 = Double.valueOf(input.nextInt());
            System.out.println("Enter the y2 ");
            y2 = Double.valueOf(input.nextInt());
            System.out.println("The distance between the two points is "+ Math.pow((Math.pow((x2 - x1),2)+Math.pow((y2 - y1),2)),0.5));

        }
    }

  • 相关阅读:
    C++ Builder string相互转换(转)
    Delphi中ComPort通信中的数据处理(转)
    GPRS管理与创建APN拨号连接(转)
    Delphi MaskEdit用法(转)
    GPRS DTU概念及DTU的工作原理(转)
    TIdTCPClient 详解
    GPRS的工作原理、主要特点
    Android studio快捷键
    HDU 1255 覆盖的面积(线段树+扫描线)
    Rescue
  • 原文地址:https://www.cnblogs.com/huangzongyu/p/7531962.html
Copyright © 2011-2022 走看看