-#include <iostream>
using namespace std;

int main() {
    int calificacion;
    cout << "Introduzca su calificacion: ";
    cin >> calificacion;

    if (calificacion >= 90) {
        cout << "A" << endl;
    } else if (calificacion >= 80) {
        cout << "B" << endl;
    } else if (calificacion >= 70) {
        cout << "C" << endl;
    } else if (calificacion >= 60) {
        cout << "D" << endl;
    } else {
        cout << "F" << endl;

        
    }

    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: