第二章作业

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了第二章作业相关的知识,希望对你有一定的参考价值。

/*程序员龚猛,求整数各个位上的和*/

技术分享

 

import java.util.Scanner;

public class Helloworld
{

 public static void main(String[] args)
 
 {
  
    Scanner input=new Scanner(System.in);
         System.out.print("Enter a number 0 and 1000 :");
         int number =input.nextInt();
         int bit=number%10;
         number=number/10;
         int ten=number%10;
         number=number/10;
         int kil=number%10;
         System.out.println("The sum of the digits is "+(bit+ten+kil))  

}

}

/*程序员龚猛,两点的距离*/

技术分享

package HelloWorld;
import java.util.Scanner;
public class HelloWorld {
public static void main(String[] args) {
Scanner input = new Scanner(System.in);

System.out.print("输入x1和y1:");
double x1 =input.nextDouble();
double y1 =input.nextDouble();

System.out.print("输入x2和y2:");
double x2 =input.nextDouble();
double y2 =input.nextDouble();

double x =Math.pow((x2 - x1),2);
double y =Math.pow((y2 - y1),2);

System.out.println("两个点之间的距离是:"+ Math.pow((x+y),0.5));
  }
}

 


























以上是关于第二章作业的主要内容,如果未能解决你的问题,请参考以下文章

第二章作业

第二章作业

第二次作业

第二章作业-第1题-万世想

团队作业7——第二次项目冲刺(Beta版本)

第二章作业(尤心心)