QOJ.ac
QOJ
ID | 题目 | 提交者 | 结果 | 用时 | 内存 | 语言 | 文件大小 | 提交时间 | 测评时间 |
---|---|---|---|---|---|---|---|---|---|
#869569 | #10. 卡常数 | yangcanning | Compile Error | / | / | C++23 | 236b | 2025-01-25 11:22:59 | 2025-01-25 11:23:00 |
Judging History
answer
#include"bits/stdc++.h"
using namespace std;
constexpr int square(int x) {
return x * x;
}
//constexpr int result = square(100);
constexpr bool result[100000000] = { square(100) };
int main() {
cout << result << endl;
}
详细
answer.code:7:44: error: narrowing conversion of ‘10000’ from ‘int’ to ‘bool’ [-Wnarrowing] 7 | constexpr bool result[100000000] = { square(100) }; | ~~~~~~^~~~~