mirror of
https://github.com/Kiritow/OJ-Problems-Source.git
synced 2024-03-22 13:11:29 +08:00
Create 1774.c
This commit is contained in:
parent
48efc89c49
commit
ca97ee504b
15
QUSTOJ/1774.c
Normal file
15
QUSTOJ/1774.c
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
#include <stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
int tmp;
|
||||||
|
int odd=0;
|
||||||
|
int even=0;
|
||||||
|
while(scanf("%d",&tmp)==1)
|
||||||
|
{
|
||||||
|
if(tmp%2==1) odd+=tmp;
|
||||||
|
else even+=tmp;
|
||||||
|
}
|
||||||
|
return printf("%d %d\n",odd,even),0;
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user