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

第二章作业

时间:2017-09-18 13:32:21      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:src   imp   inpu   scanner   com   ges   log   int   rgs   

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

技术分享

 

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));
  }
}

 

第二章作业

标签:src   imp   inpu   scanner   com   ges   log   int   rgs   

原文地址:http://www.cnblogs.com/chengxuyuanGM/p/7541900.html

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