題目:使用者輸入X值且在輸入選擇的算式(1.y=x的平方;2.y=x的平方-4;3.y=x平方的4倍),依照選項執行結果!!!{X值為"%d"(整數)}
請幫我寫一下程式碼~~!!!
2005-10-15 09:16:22 · 3 個解答 · 發問者 翰翰兒 1 in 電腦與網際網路 ➔ 程式設計
希望你仔細瞭解程式碼的意思 有不會的再發問
#include
int main(void)
{
int x, choice, y;
printf("enter x= ");
scanf("%d",&x);
printf("enter coice:\n"
"1. y=x^2\n"
"2. y=(x^2)-4\n"
"3. y=(x^2)*4\n"
"? ");
scanf("%d",&choice);
if (choice==1)
y = x*x;
else if (choice==2)
y=x*x-4;
else if (choice==3)
y=x*x*4;
else
return 0; //輸入1 2 3以外的選擇即會結束程式
printf ("y=%d\n", y);
return 0;
}
2005-10-15 13:20:33 · answer #1 · answered by 三尼斯 3 · 0⤊ 0⤋
應該是要 #include
而不是 #include
不過加 system("pause");
是沒錯的
2005-10-24 07:40:21 補充:
我今天突然發現#include
2005-10-16 20:10:10 · answer #2 · answered by 無聊的青蛙 5 · 0⤊ 0⤋
發問者評價:
謝啦~!
但是....我還沒看到執行後的答案螢幕就跳掉了~!
你在前面加一個
#include
在最下面的
return 0;
之前一行多
system("pause");
這樣就可以了 螢幕就會停下來了
2005-10-16 11:20:53 · answer #3 · answered by Ivan 2 · 0⤊ 0⤋