//6. Lee una calificación (0-100) e indica si el estudiante aprobó (>=60).
#include <iostream>
using namespace std;

int main() {

    int nota;

    cout << "Ingrese la calificacion: ";
    cin >> nota;

    if(nota >= 60){
        cout << "Aprobo";
    }else{
        cout << "Reprobo";
    }

    return 0;
}

Embed on website

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