CSES - Datatähti 2018 peili - Results
Submission details
Task:Fraktaali
Sender:Koodoo
Submission time:2017-10-02 22:39:07 +0300
Language:C++
Status:COMPILE ERROR

Compiler report

input/code.cpp:7:44: warning: missing terminating " character [enabled by default]
  cout << "###" << endl << "###" << endl << "##.;
                                            ^
input/code.cpp:7:2: error: missing terminating " character
  cout << "###" << endl << "###" << endl << "##.;
  ^
input/code.cpp: In function 'int main()':
input/code.cpp:8:1: error: expected primary-expression before '}' token
 }
 ^
input/code.cpp:8:1: error: expected ';' before '}' token

Code

#include <iostream>
#include <string>

using namespace std;

int main() {
	cout << "###" << endl << "###" << endl << "##.;
}