Где моя ошибка | Sololearn: Learn to code for FREE!
Neuer Kurs! Jeder Programmierer sollte generative KI lernen!
Kostenlose Lektion ausprobieren
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 Antwort
+ 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