[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]


    Search the Q&A Archives


...make a program that will loops for ten times and in...

<< Back to: LEARN C/C++ TODAY (A list of resources/tutorials)

Question by nina
Submitted on 1/3/2004
Related FAQ: LEARN C/C++ TODAY (A list of resources/tutorials)
Rating: Rate this question: Vote
how to make a program that will loops for ten times and in every even loops it will print"merry Christmas" and in odd loops it will print "happy new year"


Answer by sudhansu
Submitted on 2/11/2004
Rating:  Rate this answer: Vote
#include<stdio.h>

int main()
{
    int i;
    for(i = 1;i<=10;i++)
    {
        if(i%2 == 0)
        {
          //case of even loop
          printf("\n merry Christmas\n");
        }
        else
        {
          //case of odd loop
          printf("\n happy new year\n");
        }
    }
}

 

Your answer will be published for anyone to see and rate.  Your answer will not be displayed immediately.  If you'd like to get expert points and benefit from positive ratings, please create a new account or login into an existing account below.


Your name or nickname:
If you'd like to create a new account or access your existing account, put in your password here:
Your answer:

FAQS.ORG reserves the right to edit your answer as to improve its clarity.  By submitting your answer you authorize FAQS.ORG to publish your answer on the WWW without any restrictions. You agree to hold harmless and indemnify FAQS.ORG against any claims, costs, or damages resulting from publishing your answer.

 

FAQS.ORG makes no guarantees as to the accuracy of the posts. Each post is the personal opinion of the poster. These posts are not intended to substitute for medical, tax, legal, investment, accounting, or other professional advice. FAQS.ORG does not endorse any opinion or any product or service mentioned mentioned in these posts.

 

<< Back to: LEARN C/C++ TODAY (A list of resources/tutorials)


[ Home  |  FAQ-Related Q&As  |  General Q&As  |  Answered Questions ]

© 2008 FAQS.ORG. All rights reserved.