printf("ho_tari\n");

findValueInArray 본문

C

findValueInArray

호타리 2023. 9. 1. 09:19
#include <stdio.h>



int main(void)

{

	int nums[10] = {50, 90, 30, 100, 80, 10, 20, 40, 70, 60};   //initialized list

	

	int value;

	printf("input value : ");

	scanf("%d", &value);

	

	int i;

	for (i = 0; i < 10; ++i)

	{

		if (value == nums[i])

		{

			break;

		}

		

	}

	

	if (i < 10)

	{

		printf("%d is found. index : %d\n", value, i);

	}

	else

	{

		printf("%d is not found.\n", value);

	}

	

	return 0;

}

 

<compile 결과>

'C' 카테고리의 다른 글

genderRatio  (0) 2023.09.01
gcd  (0) 2023.09.01
findValue  (0) 2023.09.01
findMax  (0) 2023.09.01
fahr2celsius  (0) 2023.08.31