repo.or.cz
/
letusc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
move to repo.or.cz
[letusc.git]
/
ch2
/
exercises1
/
exa2.c
blob
f6b7cb4368ee6a6488cc4d8e8b47d1b11e88031d
1
/*Odd or even*/
2
3
#include<stdio.h>
4
5
int
main
()
6
{
7
int
i
;
8
printf
(
"Enter the Number: "
);
9
scanf
(
"%d"
,&
i
);
10
11
if
(!(
i
%
2
))
12
printf
(
"%d is even
\n
"
,
i
);
13
else
14
printf
(
"%d is odd
\n
"
,
i
);
15
return
0
;
16
}