2013年计算机软件水平考试程序员教程
流程控制语句(分支语句和循环语句)
程序体验:
public class Test5 {
/**
* @param args
* 分支语句的测试
* 1路 if
* 2路 if else
* N路 switch case
*/
public static void main(String[] args) {
int [] scope={34,56,78,29,58,90,80};
for (int i = 0; i < scope.length; i++) {
if(scope[i]>=90){
System.out.println("A");
}else{
if(scope[i]>80){
System.out.println("B");
}else{
if(scope[i]>70){
System.out.println("C");
}else{
-
if(scope[i]>60){
System.out.println("D");
}else{
System.out.println("不及格");
}
}
}
}
}
if(20
编辑推荐:
温馨提示:因考试政策、内容不断变化与调整,长理培训网站提供的以上信息仅供参考,如有异议,请考生以权威部门公布的内容为准! (责任编辑:长理培训)
点击加载更多评论>>