当前位置:   article > 正文

计算机软考初级程序员教程,2013年计算机软考程序员教程

软考程序员初级教程

d7f4ae76d503f0f432ee1ace634e09aa.png

流程控制语句(分支语句和循环语句)

程序体验:

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<=scope[3] & scope[3]<=30);

scope[3]=45;

System.out.println(scope[3]);

System.out.println("---------------------------------");

/**

* N路分支语句switch case

* 1、break的有无 2、default的位置 3、改变default位置并去掉其break

* 4、请问:switch中可以传入什么类型的值?

* byte short int char enum

*/

for (int i = 0; i < scope.length; i++) {

int temp=scope[i]/10;

switch (temp) {

default:

System.out.print("不及格");

System.out.print("哈哈,我是多余的..");

// break;

case 10:

case 9:

System.out.print("A");

break;

case 8:

System.out.print("B");

break;

case 7:

System.out.print("C");

break;

case 6:

System.out.print("D");

break;

}

}

}

2829f2ca24f0d0090cbba57f30759f23.png

2013年计算机软考程序员教程.doc

下载Word文档到电脑,方便收藏和打印[全文共889字]

编辑推荐:

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

8b95f2eb3d3f7ce4dc3bf1178c74941e.png

下载Word文档

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/671991
推荐阅读
相关标签
  

闽ICP备14008679号