發表文章

目前顯示的是 4月, 2015的文章

[C]38th ITSA Problem 2

第二題也還蠻簡單的 其實沒什麼需要注意的地方 #include <stdio.h> int ooxx[3][3]; void initarray(){ int i,j; for(i=0;i<3;i++) for(j=0;j<3;j++) ooxx[i][j]=0; } void printResult(char winner){

[C]38th ITSA Problem 1

這題是基本題   注意輸出到小數點下第一位 #include <stdio.h> int main() { int input; while(scanf("%d",&input)==1){ printf("%.1f\n",input * 1.6f); } return 0; } 以上為個人淺解 還請各位大大多多指教