0
Где моя ошибка
#include <iostream> using namespace std; int main() { cout << "C \n" ; cout << "+ \n" ; cout << "+" ; return 0; } Нет вводных данных
1 Respuesta
+ 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



