首页 > 代码库 > java4android (练习使用if else结构)
java4android (练习使用if else结构)
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"); } } }
2.打印出100-200之间所有的素数
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 }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。