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

部分题目增加提示

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