4-1.c 程式碼如下: #include<stdio.h>int main(){ int i,s,n=100; for(i=1;i<=n;i++){ //求和 s=s+2*i+1; } printf("%d\n",s); return 0;} 輸出結果 ...
確定! 回上一頁