下列程式請複製並貼到你新開的專案上,並執行它. 【程式碼】 #include <stdio.h> #include <stdlib.h> int main() { int x; for(x=0;x<4;x++){ printf("%d\n",x); } } 1.請注意上面內縮的指令有那些. 2.請適當修改或增加指令,使程式顯示數字的方式為 0 1 2 3 3.請適當修改或增加指令,使程式顯示數字的方式為 x=0 x=1 x=2 x=3 4.請適當修改或增加指令,使程式顯示數字的方式為 pow(0,2)=0 pow(1,2)=1 pow(2,2)=4 pow(3,2)=9 |