#include <stdio.h>
int main(void)
{
int n1, n2;
double d1, d2;
printf("정수 | 정수 : ");
scanf("%d | %d", &n1, &n2);
printf("입력 데이터 출력 : %d, %d \n\n", n1, n2);
printf("실수 / 실수 : ");
scanf("%lf / %lf", &d1, &d2);
printf("입력 데이터 출력 : %f, %f \n\n",d1, d2);
printf("정수 +-*/ 실수 : ");
scanf("%d +-*/ %lf", &n1, &d1);
printf("입력 데이터 출력 : %d, %f \n\n", n1, d1);
return 0;
}
'C > c언어 수업' 카테고리의 다른 글
p245 switch (0) | 2020.08.05 |
---|---|
p242 삼항연산자 int - positive/negative/absolute value (0) | 2020.08.05 |
p217 | / - 사용해 데이터 구분 (0) | 2020.08.05 |
p214 (0) | 2020.08.05 |
p201문자갯수세기 (0) | 2020.08.04 |