fork download
  1.  
  2. #include <iostream>
  3. using namespace std;
  4.  
  5. int main () {
  6.  
  7. int grade;
  8.  
  9. cout <<"Enter The student's grade:"<< endl;
  10.  
  11. cin >> grade;
  12.  
  13. if (grade >= 60)
  14.  
  15. cout << "Pass" << endl;
  16.  
  17. else
  18.  
  19. cout << "Fila" << endl;
  20.  
  21. return 0;
  22.  
  23. }
  24.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
Enter The student's grade:
Pass