Click here to Skip to main content
15,890,438 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
See more:
i cant solve it ..............

What I have tried:

I tried in using loop but cant solve it can you please help me
Posted
Updated 13-Jul-22 21:01pm
Comments
Patrice T 13-Jul-22 23:06pm    
you need to give more detail on what you want to do.
Do not simplifi the requirement, your actual question makes no sense.
Sandeep Mewara 13-Jul-22 23:29pm    
You need to have a single loop and two counters (or resemblance of counter).

e=0, o=3;
print e, o
Loop 0 to 100
{
print e+2, o+2
}

try!

While we are more than willing to help those that are stuck, that doesn't mean that we are here to do it all for you! We can't do all the work, you are either getting paid for this, or it's part of your grades and it wouldn't be at all fair for us to do it all for you.

So we need you to do the work, and we will help you when you get stuck. That doesn't mean we will give you a step by step solution you can hand in!
Start by explaining where you are at the moment, and what the next step in the process is. Then tell us what you have tried to get that next step working, and what happened when you did.

Start by looking at the problem and working out what the output actually is:
Index:  0  1  2  3  4  5  6  7  ...
Print:  0  3  2  5  4  7  6  9  ...
So, that boils down to:
If the index is even, print it. If it's odd, print it plus 2.

So all you need is a simplefor loop, and a way to tell is a value is odd or even.
There are two ways to do that: modulus (the % operator in C) and binary AND (the & operator in C).

Think abotu it and you'll see what I mean.

If you are having problems getting started at all, then this may help: How to Write Code to Solve a Problem, A Beginner's Guide[^]
 
Share this answer
 
Comments
CPallini 14-Jul-22 2:07am    
5.
merano99 14-Jul-22 10:49am    
+5
That is really some starter question, which is easy to answer: Learn the langugage!

Try with starting some Learn C tutorial or some video tutorial.

some tips: use functions and structs with understandable names and install some IDE like Visual Studio..
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900