Print first 100 number. | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
- 1

Print first 100 number.

3rd Aug 2016, 2:04 PM
sonu sharma
sonu sharma - avatar
2 Answers
+ 2
#include <iostream> int main() { for (int i = 1; i <= 100; i++) std::cout << i; } If this wasn't what you was looking for, then please expand on your question.
3rd Aug 2016, 2:19 PM
Cohen Creber
Cohen Creber - avatar
+ 1
do your own homework
3rd Aug 2016, 3:10 PM
Null Void
Null Void - avatar