第四次上機測驗
天氣好冷,覺得鼻子有點痛。不過12月是這種溫度才正常吧。
前言
我忘記這天的最高溫與最低溫是多少了。
不過隔天就是寒流來的最低溫,體感溫度11度,我覺得這天有得比。
陰雨綿綿,吹著冷風,我穿著短袖短褲還有平常穿的那件外套,騎著腳踏車前往教室。
等等,前面才說很冷,現在穿著短袖短褲?
度ㄉ度度,因為我原本以為我的衣服有辦法乾,結果起來每個都還有點溼溼的。
到底要穿濕的衣服,還是乾脆就不穿?
最後我選擇了後者。
好冷。
是說,這次又喜得不正常電腦了。
只好再去找助教幫忙,然後我就得到了這個。
?
考後心得
我覺得我這次又寫了一坨大便出來……
好像連續了兩次要把所有的code寫在一個檔案裡,做出選單,這次沒有了。
但這次延續著上次的內容,繼續print圖形。
這次要用recursive print出正三角形,還有一個九宮格棒球遊戲。
我弄出了遞迴,但我弄不出來正三角形。如果不用遞迴應該有辦法印出來。
至於九宮格棒球的話,做是做出來了,但就是一大坨暴力破解的東西。
這次的心得拖到現在才在打,結果成績也出來了。
我這次有寫信出問助教問題了。
前幾次的評語大概都是範圍沒設好的,我覺得那也沒什麼好問的了。但這次我就真的有問題了。
第二題我提早獲勝,但都勝利了,理所當然可以停下來了吧。
助教說考試完試卷就不公開了,我只要得到這個。
題目也沒有說勝利之後需要把所有的球投完,所以我個人覺得這會有點問題,畢竟每個人解讀的不一樣,題目也沒有明確標示。
之前的範圍問題,雖然題目也沒給規範,但我覺得稍微可以接受,畢竟吃了奇怪的輸入程式會壞掉。
第一題給我的回覆是只有數字正確,但第一題也沒要求其他東西啊。
我記得的要求就只有要用遞迴,要印正三角形而已,但沒題目卷可以看我也沒辦法。
或許我明天去上課真的會現場找助教請他給我看題目吧。
不過這樣搞得我好像對分數很執著喔……
但他的評分方式就真的很不透明嘛……
code
第一題:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
#include<stdio.h>
void pyramid(int);
int main()
{
int height;
printf("Please enter the height of the pyramid:\n");
scanf("%d", &height);
printf("\nPyramid pattern:\n");
pyramid(height);
}
//function
void pyramid(int n)
{
if (n==0)
return;
pyramid(n-1);
for(int i=0;i<n;i++)
{
printf("%d", n);
}
printf("\n");
}
第二題:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
#include<stdio.h>
char board(char, char, char, char, char, char, char, char, char);
int main()
{
char hit[1000];
char board1='1', board2='2', board3='3', board4='4', board5='5', board6='6', board7='7', board8='8', board9='9';
int counter=0, control=0; //counter for ball, control for duplicate
printf("Welcome to the Baseball Game!\n");
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
while(1)
{
hit[2]='.';//initialize
hit[1]='.';//initialize
printf("\nEnter the number of the grid you hit (1-9), or enter 0 if you missed: ");
scanf("%1000s", &hit);
if(hit[2]!='.')//input>9 or -X
printf("there is no this number.\n");
else
{
if(hit[0]=='0')//miss
{
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
printf("Missed! Try again.\n");
counter++;
}
//hit
else if(hit[0]=='1')
{
if(board1=='X')
control=1; //duplicate
board1='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='2')
{
if(board2=='X')
control=1; //duplicate
board2='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='3')
{
if(board3=='X')
control=1; //duplicate
board3='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='4')
{
if(board4=='X')
control=1; //duplicate
board4='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='5')
{
if(board5=='X')
control=1; //duplicate
board5='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='6')
{
if(board6=='X')
control=1; //duplicate
board6='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='7')
{
if(board7=='X')
control=1; //duplicate
board7='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='8')
{
if(board8=='X')
control=1; //duplicate
board8='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
else if(hit[0]=='9')
{
if(board9=='X')
control=1; //duplicate
board9='X';
board(board1, board2, board3, board4, board5, board6, board7, board8, board9);
if(control==1)
{
printf("Sorry, You had hit this position. Try again.\n");
control=0;
}
counter++;
}
//hit end
//win
if(board1=='X' && board2=='X' && board3=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board4=='X' && board5=='X' && board6=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board7=='X' && board8=='X' && board9=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board1=='X' && board4=='X' && board7=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board2=='X' && board5=='X' && board8=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board3=='X' && board6=='X' && board9=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board1=='X' && board5=='X' && board9=='X')
{
printf("Congratulations, you win!\n");
break;
}
if(board3=='X' && board5=='X' && board7=='X')
{
printf("Congratulations, you win!\n");
break;
}
//end win
//lose
if(counter>=4)
{
printf("Game over, you didn't complete a line.\n");
break;
}
}
}
}//end main
//function
char board(char board1, char board2, char board3, char board4, char board5, char board6, char board7, char board8, char board9)
{
printf(" %c | %c | %c \n", board1, board2, board3);
printf("---|---|---\n");
printf(" %c | %c | %c \n", board4, board5, board6);
printf("---|---|---\n");
printf(" %c | %c | %c \n", board7, board8, board9);
}
結語
不知道該說什麼了。這個評分真的是也不知道評分表準是什麼,就這樣吧。
下一篇就是最後一篇了,第五次上機測驗aka期末考。
希望不要再印圖案了,我快掛掉ㄌ。
現在上課的精神狀態都是: