0
In a line
for (int x=0;x<=5;x++){ court<<"*"; } output will be: * * * * * but i want the output: like this * * * * * ?????
5 Answers
+ 13
The output will be ***** only...
Only if u want space...do
for (int x=0;x<=5;x++)
cout<<"*"<<" " ;
+ 2
@ James, Frost
Thank you đđ
can tell it for Python too,
*
*. instead *****
*
*
+ 2
@James
thank you so much đđ