"บล็อก: การเขียนโปรแกรม โดย วรัตม์ กวีพรพจน์"
My Profile.
ชื่อ: วรัตม์ กวีพรพจน์
ชั้น: ม.5/13 เลขที่ 10
วันเกิด: 07-December-1996
เบอร์โทร: 08536155xx
BMI: 22 กว่าๆ
ร้านอาหารที่ศรัทธา : ฮะจิบังราเมน, sweety secret, คุโรดะเอกมัย, มายพอร์ชช
ฐานะ: มียี่สิบบาทในกระเป๋าสตางค์
การ์ตูนที่ชอบ...: Hyouka
บุคคลที่นับถือ : @sugree


เว็บส่วนตัว:
winwanwon.in.th



just display:none;
จารใช้ Chrome เปิดเถอะ ขอร้องงง

วันอังคารที่ 7 สิงหาคม พ.ศ. 2555

โปรแกรมคิดเกรด




#include
main(){
       int x=0;
       printf("Programming by Warat Kaweepornpoj M.5/13 No.10\n");
       printf("// Input Score : ");
       scanf("%d",&x);
       printf("\n");
       while(x>100){
       printf("\nInput must <= 100\n// Input Score : ");
       scanf("%d",&x);
       printf("\n");
       }
       if(x>=80)
            printf("Grade A");
       else if(x>=70)
            printf("Grade B");
       else if(x>=60)
            printf("Grade C");
       else if(x>=50)
            printf("Grade D");
       else
            printf("Grade 0");
     
       getch();
}