1부터 9사이의 숫자들을 입력받아서 각각의 수를 카운트 하기
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
int a[9]={0},i;
while(cin>>i)a[i-1]++;
for(i=0;i<9;i++)cout<<i+1<<" = "<<a[i]<<endl;
system("PAUSE");
return 0;
}
실행결과
1
2
3
1
3
1
3
5
2
7
2
3
^Z //EOF을 입력하기 위해 ctrl z를 누르고 enter를 누른다.
1 = 3
2 = 3
3 = 4
4 = 0
5 = 1
6 = 0
7 = 1
8 = 0
9 = 0
Press any key to continue . . .
#include <iostream>
#include <windows.h>
using namespace std;
int main(){
int a[9]={0},i;
while(cin>>i)a[i-1]++;
for(i=0;i<9;i++)cout<<i+1<<" = "<<a[i]<<endl;
system("PAUSE");
return 0;
}
실행결과
1
2
3
1
3
1
3
5
2
7
2
3
^Z //EOF을 입력하기 위해 ctrl z를 누르고 enter를 누른다.
1 = 3
2 = 3
3 = 4
4 = 0
5 = 1
6 = 0
7 = 1
8 = 0
9 = 0
Press any key to continue . . .
댓글
댓글 쓰기