Problem | reading |
---|---|
User | DoubleShaurya |
Submission Time | 2024-03-02 16:03:08 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
reading.cpp: In function ‘int main()’:
reading.cpp:10:5: error: ‘int128_t’ was not declared in this scope; did you mean ‘int32_t’?
10 | int128_t N, K, words, pages, count = 0;
| ^~~~~~~~
| int32_t
reading.cpp:11:12: error: ‘N’ was not declared in this scope
11 | cin >> N >> K;
| ^
reading.cpp:11:17: error: ‘K’ was not declared in this scope
11 | cin >> N >> K;
| ^
reading.cpp:13:18: error: expected ‘;’ before ‘i’
13 | for (int128_t i = 0; i < N; ++i) {
| ^~
| ;
reading.cpp:13:26: error: ‘i’ was not declared in this scope
13 | for (int128_t i = 0; i < N; ++i) {
| ^
reading.cpp:14:20: error: ‘words’ was not declared in this scope
14 | if (cin >> words >> pages) {
| ^~~~~
reading.cp