fork download
  1. #include <iostream>
  2. #include <vector>
  3. #include <string>
  4.  
  5.  
  6. using namespace std;
  7.  
  8. int main()
  9. {
  10.  
  11. int grade;
  12. cout<<"Please enter the grade: ";
  13. cin>>grade;
  14.  
  15. if(grade>100.0 || grade<0)
  16. cout<<"Error";
  17. return(0);
  18. }
Success #stdin #stdout 0.01s 5356KB
stdin
add $s0, $t2, $s0
stdout
Please enter the grade: