Computer Science, asked by Wilhelmina, 6 months ago

Write a program in Java to print this below pattern :-
9
79
579
3579
13579
No spams please .
Such answers will be reported..
Thank you ​

Answers

Answered by 14032006vanshyadav
1

Number Pattern 13579 3579 579 79 9. 13579 3579 579 79 9 #include <stdio.h> int main() { int i,j; for(i=1;i<=9;i+=2) { for(j=i;j<=9;j+=2) { printf("%d",j); }

Similar questions