0
我有一個秒和分鐘計數器,非常類似於我的計時器。但是,我無法獲得在屏幕上保留的分鐘數。每秒鐘清除終端,但離開分鐘
int main()
{
int spam = 0;
int minute = 0;
while (spam != -1)
{
spam++;
std::cout << spam << " seconds" << std::endl;
Sleep(200);
system("CLS");
//I still want the system to clear the seconds
if ((spam % 60) == 0)
{
minute++;
std::cout << minute << " minutes" << std::endl;
}
//but not the minutes
}
}
您需要重新打印每個清屏後的分鐘數。目前你只打印每個垃圾郵件%60 == 0' – Tas
這就是我所堅持的。你碰巧知道該怎麼做? –