Guest User

Untitled

a guest
Nov 12th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. #include<iostream>
  2. using namespace std;
  3.  
  4. int main(){
  5. float DTB;
  6. cout<<"Diem trung binh la:";
  7. cin>>DTB;
  8. if(DTB<5) cout<<"KHONG DAT";
  9. else if(DTB>=5) cout<<"DAT";
  10. else if(DTB>=6.5 && DTB<= 7.9) cout<<"KHA";
  11. else cout<<" GIOI";
  12. return 0;
  13. }
Add Comment
Please, Sign In to add comment