Surin Lee 2021. 3. 19. 00:07

두 정수를 입력받아, 사칙연산 출력하기

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main(void){
    int a, b;
    scanf("%d %d", &a, &b);
    printf("%d + %d = %d \n", a,b, a+b);
    printf("%d - %d = %d \n", a,b, a-b);
    printf("%d * %d = %d \n", a,b, a*b);
    printf("%d / %d = %d \n", a,b, a/b);
    printf("%d %% %d = %d \n", a,b, a%b);
    system("pause");
    return 0;
}

 

두 정수를 입력받아, 처음 숫자가 큰 값이면 참을 출력하기

#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>

int main(void){
    int a, b;
    scanf("%d %d",&a,&b);
    printf("%d\n",a>b);
    system("pause");
}