C++自学过程有问题求教!求高手帮助!!

2024-11-19 03:25:20
推荐回答(1个)
回答1:

do {} while () 要加括号。


参考代码:

#include 
using namespace std;

int main()
{
    int x;
    int y = 0;
    do {
        cout << "hello" << endl;
        cin >> x;
        y++;
    }while(y < 3);

    return 0;
}