close
標題:
DEV C++ 程式設計的作業我不會~懇請大大幫忙!
請找出下列程式錯誤之處,並修正錯誤之處。1. include;#include int main{}(print('Learning C now!');print('and you will enjoy it');system("PAUSE");return 0;)2. #include #define RATE 33.487;int main(DOUBLE... 顯示更多 請找出下列程式錯誤之處,並修正錯誤之處。 1. include ; #include int main{} ( print('Learning C now!'); print('and you will enjoy it'); system("PAUSE"); return 0; ) 2. #include #define RATE 33.487; int main ( DOUBLE us,nt; scanf("%f",nt); us=nt*RATE; printf('us=%f
',us); ) 3.輸入兩個浮點數,並計算其總和。 #include #include int main() { double a, b; printf("請輸入兩個浮點數:"); scanf("%d %d", a, b); total = a+b; printf("total=%f", total); system("PAUSE"); return 0; } 4. #include (stdio.h) void main(void) { integer k; double x,y,z printf( Enter an integer: ); scanf("%d", k); printf("Enter a double: ); scanf("%lf", &X); printf("Enter two integers: ); scanf("%lf", &y, &z); printf("k=%d X=%f
", &k, &x); printf("y=%d z=%f
",y, z); } 5.計算並印出兩個整數的總合以及某一個格式的浮點數。 #include #include void main () { Integer i=100, j=200; Double d=123.456; printf("%d+%d=%d
", i, j, i+j) printf("d=%10.2f
", d); system("PAUSE"); return 0; } 6.輸入要購買的蘋果汁瓶數,並計算共花了多少錢。 #include #include int main() { int unit; double price=23.34; int total; printf("請問你要買幾瓶蘋果汁? "); scanf("%d", unit); total = unit*price; printf("我買了%d瓶100%的蘋果汁
", unit); printf("花了%f元", total); system("PAUSE"); return 0; } 7.輸入四個整數,分別為a、b、c、d。計算a與b的平均數及c與d的平均數後,再將此兩平均數相減,測試相減結果是否可被2整除,顯示餘數。 #include #include int main () { int a, b, c, d; printf("請輸入第一個整數? "); scanf("%d", &a); printf("請輸入第二個整數? "); scanf("%d", &b); printf("請輸入第三個整數? "); scanf("%d", &c); printf("請輸入第四個整數? "); scanf("%d", &d); printf("此式的餘數為%d
", a+b/2-c+d/2%2); system("PAUSE"); return 0; } 8.輸入三個整數,計算總和與平均數並加以輸出(平均數輸出至小數點第二位) #include #include int main () { int a, b, c, total; double average; printf("請輸入第一個整數? "); scanf("%d", &a); printf("請輸入第二個整數? "); scanf("%d", &b); printf("請輸入第三個整數? "); scanf("%d", &b); total = a+b+c; average = total/3; printf("%d+%d+%d=%d
", a, b, total); printf("平均數為%.2f", average); system("PAUSE"); return 0; }
最佳解答:
請找出下列程式錯誤之處,並修正錯誤之處。 1. #include #include int main(void){ printf("Learning C now!"); printf("and you will enjoy it"); system("PAUSE"); return 0; } 2. #include #define RATE 33.487 int main(void){ double us,nt; scanf("%lf",&nt); us=nt*RATE; printf("us=%lf
",us); return 0; } 3.輸入兩個浮點數,並計算其總和。 #include #include int main(void){ double a, b,total; printf("請輸入兩個浮點數:"); scanf("%lf %lf", &a, &b); total = a+b; printf("total=%lf", total); system("PAUSE"); return 0; } 4. #include int main(void){ int k; double x,y,z printf( "Enter an integer:" ); scanf("%d", &k); printf("Enter a double:" ); scanf("%lf", &X); printf("Enter two integers:" ); scanf("%lf", &y, &z); printf("k=%d X=%lf
", k, x); printf("y=%lf z=%lf
",y, z); return 0; } 5.計算並印出兩個整數的總合以及某一個格式的浮點數。 #include #include int main (void){ int i=100, j=200; double d=123.456; printf("%d+%d=%d
", i, j, i+j) printf("d=%10.2lf
", d); system("PAUSE"); return 0; } 6.輸入要購買的蘋果汁瓶數,並計算共花了多少錢。 #include #include int main(void){ int unit; double price=23.34; double total; printf("請問你要買幾瓶蘋果汁? "); scanf("%d", &unit); total = unit*price; printf("我買了%d瓶100%的蘋果汁
", unit); printf("花了%lf元", total); system("PAUSE"); return 0; } 7.輸入四個整數,分別為a、b、c、d。計算a與b的平均數及c與d的平均數後,再將此兩平均數相減,測試相減結果是否可被2整除,顯示餘數。 #include #include int main (void){ int a, b, c, d; printf("請輸入第一個整數? "); scanf("%d", &a); printf("請輸入第二個整數? "); scanf("%d", &b); printf("請輸入第三個整數? "); scanf("%d", &c); printf("請輸入第四個整數? "); scanf("%d", &d); printf("此式的餘數為%d
", ((a+b/2)-(c+d/2))%2); system("PAUSE"); return 0; } 8.輸入三個整數,計算總和與平均數並加以輸出(平均數輸出至小數點第二位) #include #include int main (void){ int a, b, c, total; 2012-10-08 10:36:46 補充: printf("請輸入第一個整數? "); scanf("%d", &a); printf("請輸入第二個整數? "); scanf("%d", &b); printf("請輸入第三個整數? "); //第八題的中段(因為回答字數有限制) 2012-10-08 10:37:22 補充: scanf("%d", &c); total = a+b+c; average = (double)(total/3); printf("%d+%d+%d=%d
", a, b,c, total); printf("平均數為%.2lf", average); system("PAUSE"); return 0; }//第八題的後段(因為回答字數有限制)
其他解答:5FAD1C75CFAE8A5F
DEV C++ 程式設計的作業我不會~懇請大大幫忙!
- 全球人壽金鑽515
- 台南有大金冷氣的安裝公司嘛
- 508公車
- P5PE-VM 20點
- 2年前已申報完的所得稅如何申訴退稅
- F1.math-3
- ADSL與WLAN無線上網的分別
- 一首歌的名子
- 102統測外語群 登記分發
- 勤益科技大學要幾分
此文章來自奇摩知識+如有不便請留言告知
發問:請找出下列程式錯誤之處,並修正錯誤之處。1. include
最佳解答:
請找出下列程式錯誤之處,並修正錯誤之處。 1. #include
其他解答:5FAD1C75CFAE8A5F
文章標籤
全站熱搜
留言列表