• Source
    1. #include <iostream>
    2. using namespace std;
    3.  
    4. int main()
    5. {
    6. int nota;
    7. cout << "Digite un valor entero para su nota (de 0-20): ";
    8. cin >> nota;
    9.  
    10. if(nota >= 13)
    11. {
    12. cout << "Su nota es excelente!.\n";
    13. }
    14. else if (nota >=11)
    15. {
    16. cout << "Usted pasó raspando!.\n";
    17. }
    18. else
    19. {
    20. cout << "Lo sentimos mucho. Usted ha sido reprovado!.\n";
    21. }
    22.  
    23. return 0;
    24. }