Problem helloworld
User nguyendinhanh1508
Submission Time 2024-12-21 14:19:28
Score 0
Max Time N/A
Max Memory N/A

Compile Error

helloworld.cpp: In function ‘int main()’:
helloworld.cpp:5:5: error: ‘assert’ was not declared in this scope
5 | assert(1 == 0);
| ^~~~~~
helloworld.cpp:2:1: note: ‘assert’ is defined in header ‘<cassert>’; did you forget to ‘#include <cassert>’?
1 | #include <iostream>
+++ |+#include <cassert>
2 | using namespace std;