Write a program to print your name for 10 times(c++)
Answers
Answered by
1
Answer:
122211
11011
110001
001100
Answered by
1
Explanation:
#include<iostream>
#include<conio.h>
using namespace std;
main()
{
for(int c=1;c<=10;c++)
{
cout<<“\n\tSobia\n”;
}
getch();
return 0;
}
Similar questions