标签:提取 5.5 mat static 大于 输入 速度 put int
1.3
public class Work
{
public static void main(String[] args)
{
System.out.println(" J
A V V A");
System.out.println(" J A A
V V A A"); //直接输出就好了
System.out.println("J J AAAAA V V
AAAAA");
System.out.println(" J A
A V A A");
}
1.8
public
class Work
{
public
static void main(String[] args)
{
double
a,b,s;
a=Math.PI;
//利用数学方法 派~
b=5.5;
s=a*b*b;
System.out.println("这个圆形的面积是:"+s);
}
}
1.12
public
class Work
{
public
static void main(String[] args)
{
int
a=35+100*60; //将跑步时间换算
double
b=2.0*1.6; //将路程换算
System.out.println("这个人的平均速度为:"+(a/3600/b));
//最后输出
}
}
2.6
/**功能:在键盘输入一个三位数,求它们的各数位之和。
*1、使用Scanner关键字来实现从键盘输入的方法。
*2、使用取余的方法将各个数位提取出来。
*3、最后将得到的各个数位相加。
*/
import java.util.Scanner;
public class Num
{
public static void main(String[] args)
{
Scanner input = new Scanner(System.in);
System.out.println("请输入一个大于0小于1000的整数:");
int x=input.nextInt();
int a= x/100;
int b= (x/10)%10;
int c= x%10;
System.out.println("三数相加结果是:" + (a+b+c));
}
}
标签:提取 5.5 mat static 大于 输入 速度 put int
原文地址:http://www.cnblogs.com/stenber/p/7787206.html