#include <iostream>
#include <windows.h>
using namespace std;
int main()
{
int y;
cin>> y;
if (y = 9);
{
cout<< "notgood";
}
cout<< "good";
system("pause>nul");
return 0;
}
我不能让它本身“好”。我需要else吗?如果我需要else,那是否意味着我需要重写系统暂停并返回0?我知道它的简单性,但有人可以帮我解决我必须做的事情。