Commit d09ed023 by chazog

Upload New File

parent 124e0e15
Showing with 26 additions and 0 deletions
#include <stdio.h>
int main()
{
int numberArray[11];
int i = 0;
while (i < 11)
{
numberArray[i] = i;
if (i % 2 == 0)
{
printf("The even numbers are: %d\n", numberArray[i]);
}
else
{
printf("The odd numbers are: %d\n", numberArray[i]);
}
i++;
}
printf("the numbers backwards are: 10 ");
for (i = 9; i >= 0; i--)
{
printf("%d ", numberArray[i]);
}
return 0;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment