題目有說喔~
"若 N=0 代表輸入結束。"
所以說pascal下是 if n=0 then break;
改成c寫法吧
題目有說喔~
"若 N=0 代表輸入結束。"
所以說pascal下是 if n=0 then break;
改成c寫法吧
#include<iostream> using namespace std; int main() { int x; while(cin >> x){ if(x==0){ return 0; } int f91; if(x<=100){ cout << "f91"<<"("<< x <<")"<<" = "<< "91" << endl; }else if(x>=101){ f91=x-10; cout << "f91""("<< x <<")"" = "<< f91 << endl; } } }
//我改了一下你的寫法,結果AC......