#include <iostream>
int main() {
int ok,num;
ok = 0;
while (num > ok) {
cout << "Enter an even number: ";
cin >> num;
if (num % 2 != 0)
cout << "The number " << num << " is not a positive even number." << endl;
else cout << num << " is even!" << endl << endl;
}
return 0;
}
아웃컴이 멈추질 않아요...
어떤 분들이 알려주신방법으로 while 을 바꿀려 햇는데 대체 어떻게 바꿔야되는지 모르겟네요 ㅠㅠ
알려주실분 계신가요? 도와주세요 ㅠㅠ
감사합니다