Problem | goodbye |
---|---|
User | angelanglez |
Submission Time | 2024-06-01 16:13:02 |
Score | 0 |
Max Time | N/A |
Max Memory | N/A |
Owl Get a Life
goodbye.cpp: In function ‘int main()’:
goodbye.cpp:5:13: error: conversion from ‘int’ to non-scalar type ‘std::string’ {aka ‘std::__cxx11::basic_string<char>’} requested
5 | string a = 'goodbye person';
| ^~~~~~~~~~~~~~~~
goodbye.cpp:7:31: error: expected ‘;’ before ‘}’ token
7 | cout << 'Goodbye' << a << '!'
| ^
| ;
8 | }
| ~