Ask your own question, for FREE!
Computer Science 11 Online
OpenStudy (anonymous):

Write a c program for the following Patern using for loop: JJJJ JJJJJ JJJJJJ J JJ JJJ

OpenStudy (anonymous):

#include <stdio.h> int main() { int i, j, n; for(i = 0; i < 6; i++) { n = (i + 3) % 6 + 1; for(j = 0; j < n; j++) printf("J"); printf("\n"); } }

OpenStudy (anonymous):

A single for loop or can it be nested like my solution?

OpenStudy (anonymous):

A single for loop

OpenStudy (anonymous):

your solution it was true , Thanks a lot ..

Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!
Can't find your answer? Make a FREE account and ask your own questions, OR help others and earn volunteer hours!

Join our real-time social learning platform and learn together with your friends!