입력으로 데이터의 개수와 정수 데이터가 입력되면, 홀수들의 합과 짝수들의 합을 구하여 차례대로 한줄에 하나씩 출력하여라
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
int i,n,sum1=0,sum2=0,a;
cin>>n;
for(i = 0; i<n;i++){
cin>>a;
if(a%2==0)sum2+=a;
else sum1+=a;
}
cout<<endl<<sum1<<endl<<sum2;
system("PAUSE");
return 0;
}
프로그램 실행 결과
15
9
9
8
8
7
7
6
6
5
5
4
4
3
3
2
9
9
8
8
7
7
6
6
5
5
4
4
3
3
2
48
38Press any key to continue . . .
38Press any key to continue . . .
댓글
댓글 쓰기