task to solve problem in cpp, Quizzes of Programming Paradigms

a task for loop to solve a programming problem

Typology: Quizzes

2020/2021

Uploaded on 12/08/2021

1233456777778
1233456777778 🇺🇸

6 documents

1 / 1

Toggle sidebar

This page cannot be seen from the preview

Don't miss anything!

bg1
Q: use for loop to wite I love
programming 10 times
#include <iostream>
using namespace std;
int main()
{
for(int i =0; i<10; i++)
{
cout<<"i love programming"<<endl;
}
return 0;
}

Partial preview of the text

Download task to solve problem in cpp and more Quizzes Programming Paradigms in PDF only on Docsity!

Q: use for loop to wite I love

programming 10 times

#include using namespace std; int main() { for(int i =0; i<10; i++) { cout<<"i love programming"<<endl; } return 0; }