Guest User

Untitled

a guest
Nov 13th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. #include <iostream>
  2. using namespace std;
  3.  
  4. int main ()
  5. {
  6. float a;
  7. cout<<"Nhap diem trung binh: ";
  8. cin>>a;
  9.  
  10. while(a<0||a>10)
  11.  
  12. {cout<<"nhap lai a "<<endl;
  13. cin>>a;}
  14.  
  15. if (a<5) cout<<"KHONG DAT"<<endl;
  16. if (a>=5&&a<6.5) cout<<"DAT"<<endl;
  17. if(a>=6.5&&a<=7.9) cout<<"KHA"<<endl;
  18. if(a>=8.0) cout<<"GIOI"<<endl;
  19.  
  20. return 0;
  21. }
Add Comment
Please, Sign In to add comment