Programming Assignment Code :-
Programming Assignment 1.1
Due on 2022-02-10, 23:59 IST
~~~THERE IS SOME INVISIBLE CODE HERE~~~
main_program{
int m,n;
cin>>m>>n;
repeat(m)
{
cout<<"X";
}
repeat(n)
{
cout<<"Y";
}
}
Programming Assignment 1.2
Due on 2022-02-10, 23:59 IST
~~~THERE IS SOME INVISIBLE CODE HERE~~~
main_program{
int m;
cin>>m;
repeat(m)
{
cout<<"*"<<endl;
}
repeat(m+1)
{
cout<<"*";
}
}
No comments:
Post a Comment
Keep your comments reader friendly. Be civil and respectful. No self-promotion or spam. Stick to the topic. Questions welcome.