Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #include <stdio.h>
- int main()
- {
- int low,high,i;
- printf("Entre com o numero minimo e maximo do intervalo, respectivamente :\n");
- scanf("%d %d",&low,&high);
- if (low>=high)
- {
- printf("Intervalo incoerente!\n");
- return 0;
- }
- for (i = low+1; i < high; i++)
- {
- if (i%2 != 0)
- {
- printf("%d\n",i);
- }
- }
- return 0;
- }
Advertisement
Add Comment
Please, Sign In to add comment