0
c++ coding
Please help me w this coding Create a program using FOR LOOP that will print these 1 2 3 4 5 6 7 8 9 10 20 30 40 50 60 70 80 90 100
6 Answers
+ 2
Giannis That may work, but pls avoid giving finished code as answer, because it makes the OP to skip the most important part of learning process. Always prefer giving hints for the OP to find the solution.
+ 1
Let me see you code the 1 ~ 10 part. From there we'll move on.
Is there input needed?
0
Have you tried something? Rather share your tryout code bit link to understand where the issue is ...
0
no i cant do it pls help me w coding
0
#include <iostream>
int main() {
int input = 1;
while (input <= 10) {
std::cout << "\n" << input;
input++;
}
}
0
you just need 2 for loops.
for (int a = 1; a < 10; a++) cout << a << endl;
for (int a = 10; a <= 100; a += 10) cout << a << endl;