编辑代码

#include <iostream>
using namespace std;
int main() {
    int a = 0 ;
    cout << "请输入您的高考分数" << endl;
    cin >> a;
    cout << "您输入的高考分数为"<< a << endl;
    if (a > 600)
    {
        cout <<"恭喜您考入一本" << endl;
        if (a>700)
    {
        cout <<"恭喜您考入北大" << endl;
    }
    else if (a>650)
    {
        cout <<"恭喜您考入人大" << endl; 

    }
        }

	return 0;
}