|
| ||||||||||
| Tags: code, odd number |
![]() |
| | Thread Tools | Search this Thread |
|
#1
| ||||
| ||||
| Loop counting odd and even numbers
|
|
#2
| ||||
| ||||
| Re: Loop counting odd and even numbers Code: int main()
{
int in, evn=0, od=0;
do
{
cout << "Please enter a number:"<< ' ';
cin>> input;
if ( (evn%2 == 0) && (in >= 0) )
even++;
else if (in >= 0)
od++;
}
while (in>=0);
cout << "You have entered" << ' '<< od << ' ' <<"odd numbers." << endl;
cout << "And" << ' ' << evn << ' ' <<"even numbers." << endl;
system("PAUSE");
return 0;
} |
|
#3
| |||
| |||
| Re: Loop counting odd and even numbers Code: long oddno =1;
long maxno;
unsigned long lproduct;
cout<<"enter the odd number";
cin >> maxno;
while( oddno<= maxno )
{
long tempno = oddno + 2;
lpro = tempno *oddno;
cout<<"the product of two numbers first number"<<oddno<<"second number"<<tempno<<"equals"<<lpro<<"\n";
oddno = tempno;
} |
|
#4
| |||
| |||
| Re: Loop counting odd and even numbers
Use the AND operation. Code: for(int i=0;i<=100;i++)
{
if(i&1)
{
printf("Odd\n");
}
else
{
printf("Even\n");
}
} |
![]() |
|
| Thread Tools | Search this Thread |
| |
Similar Threads for: "Loop counting odd and even numbers" | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Need C program code to count numbers of negative & positive numbers | Sarfaraj Khan | Software Development | 5 | 16-01-2010 01:00 PM |
| How to check Bingo game numbers in loop | Afznotermi | Software Development | 3 | 29-10-2009 02:19 PM |
| SQL Query for Searching Missing Numbers from Sequence of Numbers | Bhagwandas | Software Development | 3 | 18-02-2009 12:47 PM |
| Help with sh script loop counting | Brake Fail | Software Development | 3 | 10-01-2009 05:48 PM |
| Counting numbers and deleting array | SalVatore | Software Development | 2 | 25-08-2008 01:48 PM |