Negative days completion.
This commit is contained in:
15
programs/lst34/main.c
Normal file
15
programs/lst34/main.c
Normal file
@@ -0,0 +1,15 @@
|
||||
#include <stdio.h>
|
||||
|
||||
int main(void) {
|
||||
int n;
|
||||
|
||||
printf("Input integer: ");
|
||||
scanf("%d", &n);
|
||||
|
||||
if (n % 2)
|
||||
puts("The integer is odd.");
|
||||
else
|
||||
puts("The integer is even.");
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user