0
Why project don't work
I make projekt, input and expected output are the same, but program write erorr, what happen?
5 Respuestas
+ 3
What kind of error?
Please link your code so we can check on it. Also summarize what the code is supposed to do and give us exame input and output so we can test it.
+ 1
You can link your code like this:
Go to Code section, click +, select the programming language, insert your code, save.
Come back to this thread, click +, select Insert Code, sort for My Code Bits, select your code.
👉Which error do you get?
+ 1
thank you for help, i don't know what am i do, but i fix this, thanks again!!!
+ 1
Great that you were able to fix it!
0
Projekt name is Countdown
#include <iostream>
using namespace std;
int main() {
int n;
cin >> n;
for(;n > 0;n--)
{
cout << n << endl;
if(n%5 == 0){cout << "Веер" << endl;}
}
//ваш коl
return 0;
}