public class Text1 {
public static void main(String[] args){
Scanner sc = new Scanner(System.in)
int a,b,c,d,sum,max=0,min
double p
System.out.println("请输入四门学科的分数")
a=sc.nextInt()
b=sc.nextInt()
c=sc.nextInt()
d=sc.nextInt()
sum=a+b+c+d
p=sum/4
if(a>b &&a>c &&a>d){
max=a
}else if( b>c &&b>d){
max=b
}else if(c>d){
max=c
}else {
max=d
}
if(a<b &&a<c &&a<d){
min=a
}else if(b<c &&b<d){
min=b
}else if(c<d){
min=c
}else{
min=d
}
System.out.println("学科分数总和="+sum)
System.out.println("学科平均分数="+p)
System.out.println("学科分数最大值="+max)
System.out.println("学科分数最小值="+min)
}
}
是应用程序sc - sc.exe - 进程信息
进程文件:sc 或者 sc.exe
进程名称:A tool to aid in developing services for WindowsNT
描述:
SC.exe 检索和设置有关服务的控制信息。可以使用 SC.exe 来测试和调试服务程序。可以设置存储在注册表中的服务属性来控制如何在启动时和作为后台程序运行时启动服务应用程序
出品者: Microsoft Corporation
属 于:Microsoft® Windows® Operating System.
文件版本:5.1.2600.0 (xpclient.010817-1148)
系统进程: 否
后台程序: 是
使用网络: 是
硬件相关: 否
常见错误: 未知N/A
内存使用: 未知N/A
安全等级 (0-5): 2
间谍软件: 否
Adware: 否
广告软件: 否
木马: 否
如果版本号和出品人不正确有可能是病毒!
//输入一个整数,输出它的三次方值import java.util.Scanner
public class Text {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in)
System.out.println("请输入一个值:")
int num = sc.nextInt()
int d = (int)Math.pow(num,3)
System.out.println(d)
}
}
//Math.pow只能是浮点型,强转至整数型,输出整数,上面的答案有点瑕疵。望采纳
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)