Где моя ошибка | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Где моя ошибка

#include <iostream> using namespace std; int main() { cout << "C \n" ; cout << "+ \n" ; cout << "+" ; return 0; } Нет вводных данных

29th Dec 2021, 11:02 PM
Bogdan Kucheruk
1 Answer
+ 5
Remove space between each character and '\n' int main() { cout << "C\n" ; cout << "+\n" ; cout << "+" ; return 0; } P.S. Please add C++ in the tags https://code.sololearn.com/W3uiji9X28C1/?ref=app
30th Dec 2021, 1:22 AM
Ipang