M monkey17 Estimable Feb 27, 2015 2 0 4,510 Feb 27, 2015 #1 write a program that will produce the sequence 7, 9, 11, 13......67.
R Rynhe Estimable Jul 4, 2014 2 0 4,520 Feb 27, 2015 #2 is it for homework? you can use the hello word sequence found everywhere in google.. so it shows every squence one after the other... Upvote 0 Downvote
is it for homework? you can use the hello word sequence found everywhere in google.. so it shows every squence one after the other...
USAFRet Illustrious Moderator Mar 16, 2013 7,469 117 40,290 Feb 27, 2015 #3 2 threads, 2 homework questions. please show 3 separate examples of what you have already tried that doesn't work. Upvote 0 Downvote
2 threads, 2 homework questions. please show 3 separate examples of what you have already tried that doesn't work.
P Pinhedd Distinguished Moderator Aug 7, 2007 602 1 19,960 Feb 27, 2015 #4 monkey17 : write a program that will produce the sequence 7, 9, 11, 13......67. C++: #include <stdio.h> int main(int argc, char** argv) { fprintf(stdout,"%d, %d, %d, %d......%d\n",7,9,11,13,67); return 0; } Upvote 0 Downvote
monkey17 : write a program that will produce the sequence 7, 9, 11, 13......67. C++: #include <stdio.h> int main(int argc, char** argv) { fprintf(stdout,"%d, %d, %d, %d......%d\n",7,9,11,13,67); return 0; }