728x90
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main()
{
	int i, j;
	scanf("%d.%d", &i, &j);
	printf("%d\n%d\n", i, j);

	return 0;
}

visual studio code 버전 2005 이후로 printf 와 scanf 를 사용하면 에러가 납니다 그걸 방지하기위해 

printf_s 와 scanf_s 를 사용할수있지만 에러를 무시하기위해

#define _CRT_SECURE_NO_WARNINGS 를 선언했습니다.

728x90