#GOBJ305L. GESP 3级客观题|枚举算法|课堂讲解
GESP 3级客观题|枚举算法|课堂讲解
GESP 3级客观题|枚举算法|课堂讲解
考试频率:高频。本卷共 2 题。
- 以下程序使用枚举法(穷举法)求解满足条件的三位数,横线处应该填入的是( )
#include <iostream>
using namespace std;
int main() {
int count = 0;
for (int i = 100; i <= 999; i++) {
int a = i / 100;
————————————————————
int c = i % 10;
if (a * a + b * b == c * c) {
count++;
}
}
cout << count << endl;
return 0;
}
{{ select(1) }}
int b = (i / 10) / 10;int b = (i / 10) % 10;int b = (i % 10) / 10;int b = (i % 10) % 10;
-
在 C++ 中,枚举的底层类型可以是非整型(如
float或double)。{{ select(2) }}
- 对
- 错