Problem greeting
User thatlycheeoolongdrink
Submission Time 2024-02-21 17:22:20
Score 0
Max Time N/A
Max Memory N/A

Compile Error

greeting.cpp:1:1: error: ‘include’ does not name a type
1 | include <iostream>
| ^~~~~~~
greeting.cpp: In function ‘int main()’:
greeting.cpp:4:2: error: ‘string’ was not declared in this scope
4 | string s;
| ^~~~~~
greeting.cpp:5:2: error: ‘cin’ was not declared in this scope
5 | cin>>s;
| ^~~
greeting.cpp:5:7: error: ‘s’ was not declared in this scope
5 | cin>>s;
| ^
greeting.cpp:6:2: error: ‘cout’ was not declared in this scope
6 | cout<<s;
| ^~~~