高手进,java的编程 应该很简单额
根据输入的分数,输出该成绩的信息(成绩为优秀'良好,中,及格或不及格),使用switch结构完成...
根据输入的分数,输出该成绩的信息(成绩为优秀'良好,中,及格或不及格),使用switch结构完成
展开
2个回答
展开全部
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import javax.swing.JOptionPane;
public class Test1 {
/**
* @param args
*/
public static void main(String[] args) {
//图形界面输入
String value=JOptionPane.showInputDialog("请输入");
//io子节流输入
/* BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
try {
int a=Integer.parseInt(br.readLine());
System.out.println("请输入");
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
int score =Integer.parseInt(value)/10;
switch (score){
case 6:System.out.println("pass");break;
case 7:System.out.println("pass");break;
case 8:System.out.println("medinm");break;
case 9:System.out.println("excellent");break;
case 10:System.out.println("excellent");break;
default : System.out.println("no pass");
}
}
}
好久没有写java了 ,本来上百度来找c++问题的,看到你的了 回答一下
import java.io.IOException;
import java.io.InputStreamReader;
import javax.swing.JOptionPane;
public class Test1 {
/**
* @param args
*/
public static void main(String[] args) {
//图形界面输入
String value=JOptionPane.showInputDialog("请输入");
//io子节流输入
/* BufferedReader br=new BufferedReader(new InputStreamReader(System.in));
try {
int a=Integer.parseInt(br.readLine());
System.out.println("请输入");
} catch (NumberFormatException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}*/
int score =Integer.parseInt(value)/10;
switch (score){
case 6:System.out.println("pass");break;
case 7:System.out.println("pass");break;
case 8:System.out.println("medinm");break;
case 9:System.out.println("excellent");break;
case 10:System.out.println("excellent");break;
default : System.out.println("no pass");
}
}
}
好久没有写java了 ,本来上百度来找c++问题的,看到你的了 回答一下
展开全部
import java.io.*;
public class Test {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
BufferedReader din = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(din.readLine());
switch(a/10) {
case 10:case 9:
System.out.println("优秀");break;
case 8:
System.out.println("良好");break;
case 7:
System.out.println("中");break;
case 6:
System.out.println("及格");break;
case 5:case 4:case 3:case 2:case 1:case 0:
System.out.println("不及格");break;
}
}
}
public class Test {
/**
* @param args
* @throws IOException
*/
public static void main(String[] args) throws IOException {
BufferedReader din = new BufferedReader(new InputStreamReader(System.in));
int a = Integer.parseInt(din.readLine());
switch(a/10) {
case 10:case 9:
System.out.println("优秀");break;
case 8:
System.out.println("良好");break;
case 7:
System.out.println("中");break;
case 6:
System.out.println("及格");break;
case 5:case 4:case 3:case 2:case 1:case 0:
System.out.println("不及格");break;
}
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询