java4android (练习使用if else结构)

时间:2014-05-18 19:23:36   收藏:0   阅读:260
bubuko.com,布布扣
public class Text01{
    public static void main(String args[]){
        int score = -1;
        if(score>85&&score<=100){
            System.out.print("A");
        }
        else if(score>75&&score<=85){
            System.out.print("B");
        }
        else if(score>60&&score<=75){
            System.out.print("C");
        }
        else if(score<=60&&score>=0){
            System.out.print("D");
        }
        else {
            System.out.print("buzhengchang");
        }
        
    }
}
bubuko.com,布布扣

2.打印出100-200之间所有的素数

bubuko.com,布布扣
 1 public class Text02{
 2     public static void main(String args[]){
 3         for(int i=100;i<=200;i++){
 4         boolean b = false;
 5             for(int j=2;j<=i-1;j++){
 6                 int k =i%j;
 7                 if(k==0){
 8                     b=true;
 9                 }
10             }
11             if(!b){
12                 System.out.print(i +"\n");
13             }
14         }
15     }
16 }
bubuko.com,布布扣

 

 

java4android (练习使用if else结构),布布扣,bubuko.com

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!