标签:else span data 它的 can bsp div code 等级
1 #include<stdio.h> 2 int main(){ 3 int t; 4 scanf("%d",&t); 5 if(t>=90 && t<100){ 6 printf("A"); 7 } 8 else if(t>=80 && t<90){ 9 printf("B"); 10 } 11 else if(t>=70 && t<80){ 12 printf("C"); 13 } 14 else if(t>=60 && t<70){ 15 printf("D"); 16 } 17 else if(t>=0 && t<60){ 18 printf("E"); 19 } 20 }
标签:else span data 它的 can bsp div code 等级
原文地址:http://www.cnblogs.com/panweiwei/p/6270728.html