第三次上機測驗
印圖形苦手qwq
前言
時間慢慢過去,不知不覺也來到了第三次上機測驗。
這同時也代表著距離期末越來越近了。
在我打這段話的同時,我突然想到,好像哪裡怪怪的?
因為第八週才剛過啊,如果我只有四次上機測驗,那不就代表下次考完就放寒假了嗎?
然後我們兩星期考一次試?
我去看了一下行事曆,原來我們總共要考五次阿。
三次小考+兩次段考=五次上機測驗。
原來我一直都搞錯ㄌ。
這一次考試,是一個很基本的東西變成我很不會的樣子(?
學到for迴圈之後,除了給你一個整數n
,你要輸出n
次句子之外,再來就是印圖案了。
印圖案,我的for迴圈噩夢……
基本的正方形、長方形還OK,大概就是兩層for迴圈包一包。
但是到了菱形、三角形什麼的……我不行了。
是說,這次的電腦是正常的了。
不過依舊有其他電腦出問題,像是我旁邊好像有6台電腦都用不了吧。
codespace的cmd有時還是會卡卡的,讓人有點害怕。
vscode在登入之後會自動同步,我的power mode當然也裝了上來,樸實無華的小功能。
不過節省越多資源越好,畢竟他在那邊卡我還是有點害怕,power mode暫時先離開我吧。
dev c++也先開起來,這次也能正常運作了。
那麼就,開始吧!
考後心得
我寫不出來(凱留哭哭.jpg)
這是和第二次一樣,所有的內容和在一個code裡面。
另外,題目有指定要怎麼寫。
第二次的時候,看到選單,就讓人想到那次上課範圍教到的switch。
switch也可以用if else替代,之前沒有限定要怎麼做,不過我還是用switch了。
這次則是指定要使用function。
不知道為什麼,之前一直有種function有點難的印象,不過現在意外地覺得還OK。
而且呼叫呼叫真的是滿方便的,又整整齊齊的很舒服。
這次的題目有四個選項:
- 印長方形。
- 印菱形。
- 把數字標準化。
不過印圖案的部分並沒有那麼簡單的就放過我們,有要注意的地方。
第一題:
會有兩個數字,分別為row
和column
。
印出長方形,不過裡面的填充物不是星星,是數字。
1
2
3
1 2 3 4 5
6 7 8 9 8
7 6 5 4 3
裡面的填充物是1到9,到了9之後再反過來9到1。
第二題:
會有一個數字n
,要是奇數,同時得大於三(這樣才印得出來他要求的圖案)
至於他的樣子如下:
1
2
3
1
2 * 3
4
1
2
3
4
5
6
7
1
2 * 3
4 * 5 * 6
7 * 8 * 9 * 8
7 * 6 * 5
4 * 3
2
第三題:
指定function題目,標準化數字,公式都有提供。
標準差σ
和平均值μ
要用function來做。
會有三個整數x1
、x2
、x3
。輸出z1
、z2
、z3
。
結果這題是最簡單的,公式套一套,東西就出來了。
平均值公式
\(\mu = \frac{x_1 + x_2 + x_3}{3}\)
標準差公式
\(\sigma = \sqrt{\frac{(x_1 - \mu)^2 + (x_2 - \mu)^2 + (x_3 - \mu)^2}{3}}\)
標準化數字公式
\(z_i = \frac{x_i - \mu}{\sigma} \quad \text{for } i = 1, 2, 3\)
最後我只解出一和三,感覺一開始在一浪費太多時間了,因為想不出來怎麼讓他跑1到9再反著回來。
原本打算硬幹,後來想說回來再試試看,才想出了最後的解法。
至於第二題,我丟了一個不是他要求的菱形,裡面的填充物也不符合要求。
只能看能不能看在他長得有一點點像給我一點點分數了QQ
code
現在看一下發現我還宣告一個standardize的function,但我根本沒把它寫出來。
算ㄌ,就這樣吧。
考試的時候看著時間越來越近腦袋就越來越轉不動。原本不知道為甚麼在打算寫standardize的function的時候卡了一下。
但其實我就只要讓他吃三個數字,然後把我寫在main的東西搬過去就好。
另外兩個function就是print長方形跟鑽石用的。
還有在從vscode跟dev c++搬來搬去的時候,不知道為什麼在排版上都會微妙的跑掉。
明明大家一樣都是用tab,該不會有人的tab等於5格吧= =
至於要不要嘗試把第二題寫出來,等之無聊再來寫好了。
這次用到了math.h
的涵式庫,在使用gcc hello.c -o hello
這個指令的時候就出現了小問題。
只要在結尾再加上-lm
,也就是打gcc hello.c -o hello -lm
就沒問題了。
至於原因,請看stackoverflow的文章:https://stackoverflow.com/questions/12824134/undefined-reference-to-pow-in-c-despite-including-math-h
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
#include<stdio.h>
#include<math.h>
float mean(float, float, float);
float standard(float, float, float);
float standardize(float);
int rectangle(int, int);
int diamond(int);
int main()
{
/*
option 1. rectangle pattern
row列 columns行
option 2. diamond pattern with stars
odd number >=3
option 3. calculate the mean and standard deviation of the three number
use function
*/
printf("Please choose which option you want to do:\n");
printf("1: Square pattern\n");
printf("2: Diamond pattern with stars\n");
printf("3. Standarize three numbers\n");
printf("4. End program\n");
int choose;
while(printf("Enter your choose[1/2/3/4]: "), scanf("%d", &choose))
{
if(choose==4)
{
printf("End program.\n");
break;
}//leave while
else
{
switch(choose)
{
case 1:
printf("option 1. Square pattern\n");
int row, col;
int tmp=0, counter=1;
printf("Please enter the number of rows:\n");
scanf("%d", &row);
printf("Please enter the number of columns:\n");
scanf("%d", &col);
rectangle(row, col);
printf("\n<back to the top level menu>\n");
break;
case 2:
printf("option 2. Diamond pattern with stars\n");
printf("Please enter the number of layers of diamond:");
int layer;
scanf("%d", &layer);
if(layer>=3 && layer%2!=0) //must >3 and is odd
diamond(layer);
else
printf("input invaild!\n");
printf("\n<back to the top level menu>\n");
break;
case 3:
printf("option 3. Standarize three numbers\n");
int x1, x2, x3;
float z1, z2, z3;
printf("Please enter three intergers:\n");
scanf("%d", &x1);
scanf("%d", &x2);
scanf("%d", &x3);
z1=(x1-mean(x1, x2, x3))/standard(x1, x2, x3);
z2=(x2-mean(x1, x2, x3))/standard(x1, x2, x3);
z3=(x3-mean(x1, x2, x3))/standard(x1, x2, x3);
printf("standardized numbers:\n");
printf("z1 = %.3f\n", z1);
printf("z2 = %.3f\n", z2);
printf("z3 = %.3f\n", z3);
printf("\n<back to the top level menu>\n");
break;
default:
printf("Wrong input.\n");
}
}
}//end big while
}//end main
//function
float mean(float x1, float x2, float x3)
{
return (x1+x2+x3)/3;
}
float standard(float x1, float x2, float x3)
{
float up;
up=(pow(x1-mean(x1,x2,x3),2))+(pow(x2-mean(x1,x2,x3),2))+(pow(x3-mean(x1,x2,x3),2));
return sqrt(up/3);
}
int rectangle(int row, int col)
{
int reverse=0, counter=1;
for(int i=0;i<row;i++)
{
for(int o=0;o<col;o++)
{
if(counter==9)
reverse=1;
else if(counter==1)
reverse=0;
if(reverse==0)
{
printf("%d ", counter);
counter++;
}
else if(reverse==1)
{
printf("%d ", counter);
counter--;
}
}
printf("\n");
}
}
int diamond(int n)
{
int space=n-1;
int reverse=0, counter=1;
for (int i=1;i<n;i++)
{
//print space before *
for (int j=0;j<space;j++)
printf(" ");
for (int j=0;j<=i-1;j++)
{
if(counter==9)
reverse=1;
else if(counter==1)
reverse=0;
if(reverse==0)
{
printf("%d ", counter);
counter++;
}
else if(reverse==1)
{
printf("%d ", counter);
counter--;
}
}
printf("\n");
space--;
}
//down
space=0;
for(int i=n;i>0;i--)
{
//print space after *
for (int j=0;j<space;j++)
printf(" ");
// Print the i stars
for (int j=0;j<i;j++)
{
if(counter==9)
reverse=1;
else if(counter==1)
reverse=0;
if(reverse==0)
{
printf("%d ", counter);
counter++;
}
else if(reverse==1)
{
printf("%d ", counter);
counter--;
}
}
printf("\n");
space++;
}
}
成績出後的感想
我不知道ㄝ……
到底輸入範圍要規範什麼,題目也沒說啊。
第二次上機測驗的時候一樣遇到這個問題,但第二次是菜單,這次就只是個單純輸入數字。
我回去看了一下第二次提供的常見問題,或許他希望的是檢查負數?
我可能要直接去問問看了,為什麼不能直接在評語告訴我就好:P
第三點的calculate_stddev function
要傳入mean
。
我還真的不知道是什麼了,我沒有叫calculate_stddev function的東西啊。
窩不知道……