+ 1
1<br> 2 5<br> 3 6 8<br> 4 7 9 10 how to print in "++
pls teach about the quesion
3 Respostas
+ 3
Maybe this is what you are looking for.
https://code.sololearn.com/cwFGjgN25Umj/?ref=app
+ 1
I am guessing you want to print 1-10. so heres a simple code:
////////////////////////////////////////////////
#include <iostream>
using namespace std;
int main()
{
for(int i=1;i<11;i++)
cout << i << endl;
}
0
You don't use <br> in c++! Post some more infos.