odd loop means at least the loop execute once.
Chat with our AI personalities
yes
how to use even and odd number with for loop and if condition plz dont use "int"..
#define int main (void){/*Algorithm*/1. First Initialize the number that is Random no2. Using while loop if the person got it, then the loop stop if not the loop continues.}return(0);
For any number n you could use * (n % 2 == 0), which would be true for an even number, false for odd For an integer i, a simpler method would be * (i & 1), which would be true for an odd number, false for even
int factorial(int n) { int i; int f=1; for(i=2;i<=n;++i) f*=i; return f; }