提交 27a0e8b7 编写于 作者: ToTensor's avatar ToTensor

部分题目增加提示

上级 dc7cdaaf
...@@ -6,6 +6,12 @@ ...@@ -6,6 +6,12 @@
请你推算一下,他当时到底有多年轻。 请你推算一下,他当时到底有多年轻。
提示:
```json
先用/10和%10把各个位上的数取出来,然后判断是否相等
```
## 答案 ## 答案
```c ```c
......
...@@ -7,6 +7,13 @@ ...@@ -7,6 +7,13 @@
请从以下四个选项中选择正确答案,填补在空白处,使得代码能运行后能产生正确的结果。 请从以下四个选项中选择正确答案,填补在空白处,使得代码能运行后能产生正确的结果。
提示:
```json
十进制数的进位问题
```
```c ```c
#include <bits/stdc++.h> #include <bits/stdc++.h>
using namespace std; using namespace std;
......
...@@ -33,9 +33,15 @@ ...@@ -33,9 +33,15 @@
7 9 7 9
``` ```
请从以下四个选项中选择正确的代码填补空白处,实现方阵转置功能。 请从以下四个选项中选择正确的代码填补空白处,实现方阵转置功能。
提示:
```json
对一个方阵转置,就是把原来的行号变列号,原来的列号变行号
```
```c ```c
#include <bits/stdc++.h> #include <bits/stdc++.h>
using namespace std; using namespace std;
...@@ -61,14 +67,14 @@ int main() ...@@ -61,14 +67,14 @@ int main()
## 答案 ## 答案
```c ```c
for (i = 0; i < n; i++) for (i = 0; i < n; i++)
{ {
for (j = 0; j < m; j++) for (j = 0; j < m; j++)
{ {
cout << a[i][j] << " "; cout << a[i][j] << " ";
} }
cout << endl; cout << endl;
} }
``` ```
## 选项 ## 选项
...@@ -76,38 +82,38 @@ int main() ...@@ -76,38 +82,38 @@ int main()
### A ### A
```c ```c
for (i = 0; i < n; i++) for (i = 0; i < n; i++)
{ {
for (j = 0; j < m; j++) for (j = 0; j < m; j++)
{ {
cout << a[i-1][j] << " "; cout << a[i-1][j] << " ";
} }
cout << endl; cout << endl;
} }
``` ```
### B ### B
```c ```c
for (i = 0; i < n; i++) for (i = 0; i < n; i++)
{ {
for (j = 0; j < m; j++) for (j = 0; j < m; j++)
{ {
cout << a[i][j-1] << " "; cout << a[i][j-1] << " ";
} }
cout << endl; cout << endl;
} }
``` ```
### C ### C
```c ```c
for (i = 0; i < n; i++) for (i = 0; i < n; i++)
{ {
for (j = 0; j < m; j++) for (j = 0; j < m; j++)
{ {
cout << a[i-1][j-1] << " "; cout << a[i-1][j-1] << " ";
} }
cout << endl; cout << endl;
} }
``` ```
...@@ -14,6 +14,13 @@ X出生后每隔3分钟分裂一次(数目加倍),Y出生后每隔2分钟 ...@@ -14,6 +14,13 @@ X出生后每隔3分钟分裂一次(数目加倍),Y出生后每隔2分钟
以下程序实现了这一功能,请你补全空白处内容: 以下程序实现了这一功能,请你补全空白处内容:
提示:
```json
分析可知,Y分别会在0.5,1.5,2.5······时被吃,所以,把60分钟分成120份,则在除以2余数为1时,Y的数目减少X个
```
```c ```c
#include <iostream> #include <iostream>
using namespace std; using namespace std;
......
...@@ -60,6 +60,10 @@ int main() ...@@ -60,6 +60,10 @@ int main()
} }
``` ```
```json
提示: 类似冒泡法求最大值最小值
```
## 答案 ## 答案
```c ```c
......
...@@ -10,6 +10,12 @@ ...@@ -10,6 +10,12 @@
以下程序实现了这一功能,请你填补空白处内容: 以下程序实现了这一功能,请你填补空白处内容:
提示:
```json
先判断是否为闰年,这会影响2月份是28还是29,如果是闰年,2月份是29,如果不是,就是28
```
```c ```c
#include <stdio.h> #include <stdio.h>
......
...@@ -69,6 +69,12 @@ int main() ...@@ -69,6 +69,12 @@ int main()
} }
``` ```
提示:
```json
只要利用模除找出含有2,0,1,9的数即可
```
## 答案 ## 答案
```c ```c
......
...@@ -30,23 +30,6 @@ ...@@ -30,23 +30,6 @@
"keywords_forbid": [] "keywords_forbid": []
} }
}, },
{
"猜年龄": {
"node_id": "algorithm-a413078fb6e74644b8c9f6e28896e377",
"keywords": [
"蓝桥杯",
"猜年龄"
],
"children": [],
"keywords_must": [
[
"蓝桥杯",
"猜年龄"
]
],
"keywords_forbid": []
}
},
{ {
"大衍数列": { "大衍数列": {
"node_id": "algorithm-12a6edfcdbb9460d8ec505301b388717", "node_id": "algorithm-12a6edfcdbb9460d8ec505301b388717",
...@@ -217,6 +200,23 @@ ...@@ -217,6 +200,23 @@
"keywords_forbid": [] "keywords_forbid": []
} }
}, },
{
"猜年龄": {
"node_id": "algorithm-a413078fb6e74644b8c9f6e28896e377",
"keywords": [
"蓝桥杯",
"猜年龄"
],
"children": [],
"keywords_must": [
[
"蓝桥杯",
"猜年龄"
]
],
"keywords_forbid": []
}
},
{ {
"合并检测": { "合并检测": {
"node_id": "algorithm-6437a69f581f4821a5cbd4267304a905", "node_id": "algorithm-6437a69f581f4821a5cbd4267304a905",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册