배열 내에서 같은 수의 개수 찾기 (Finding the number of the same number in an array)
Source Code/C 2017. 9. 14. 06:42728x90
728x170
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 |
#include <stdio.h>
int main()
{
int count = 0, input = 0;
int ary[10] = {0, 1, 2, 3, 4, 4, 3, 2, 5, 6};
printf("Input a number : ");
scanf("%d", &input);
for(int i = 0; i < sizeof(ary); i++) {
if (input == ary[i]) {
count++;
} // end of if
} // end of for
printf("The number of the same number which you input (%d) in Array ary is %d \n", input, count - 1);
} |
cs |
728x90
그리드형(광고전용)
'Source Code > C' 카테고리의 다른 글
조건문이나 함수 없이 반올림 하기 (0) | 2020.09.18 |
---|---|
숫자 출력 시 앞에 0을 붙여 자리수 채우기 (0) | 2020.09.11 |
C언어 2차원 배열 동적 할당 예제 (0) | 2020.08.14 |
이진 탐색 트리 프로그램 (Binary Search Tree Program) (0) | 2020.05.15 |
원형 큐 (Circular Queue) 예 (0) | 2017.05.31 |
중위 표기 수식을 전위 표기 수식으로 변환하는 프로그램 (0) | 2017.05.31 |
중위 표기 수식을 후위 표기 수식으로 변환하는 프로그램 (0) | 2017.05.16 |
후위 표기식 계산 프로그램 (5) | 2017.05.16 |