[C] 백준 2562번

체인지영·2021년 3월 17일
0

[C언어] 백준

목록 보기
7/10
#include <stdio.h>

int main() {
	int M,index,max;
	int a[9];
	max = 0;
	for (int i = 0; i < 9; i++)
	{
		scanf_s("%d", &a[i]);
		if (max < a[i])
		{
			max = a[i];
			index = i;

		}		
	}
	printf("%d\n%d", max,index+1);
	return 0;
}

배열을 받는법에대해 알았다. 배열로 안풀고 바로 구해보려 했으나 index값때문에 결국 저장해줘야한다는 것을 알았다.

profile
Startup, FrontEnd, BlockChain Developer

0개의 댓글