0
I don’t understand the concept
You need to make a program for a leaderboard. The program needs to output the numbers 1 to 9, each on a separate line, followed by a dot: 1. 2. 3. ... I tried it but I did not understand what was wrong.
6 odpowiedzi
+ 2
Use docstrings *or* a normal string with \n – not both.
Also, remove the white space in the string!
+ 1
Please link your code so we can help you!
Without seeing the code, we can't know what the problem is
0
print("""1. \n2. \n3. \n4. \n5. \n6. \n7. \n8. \n9.""")
I tried this out…I don’t know but something is wrong.
0
Thank you!
0
Post your code so we can see what went wrong.
Okay.
0
#include<iostream>
using namespace std;
int main()
{
for(int i=1;i <=9;i++)
{
cout<<i<<"."<<endl;
}
return 0;
}