#include <stdio.h>
int main()
{
int A, B;
scanf("%d %d", &A,&B);
printf("%d", A + B);
}
#include <stdio.h>
int main()
{
int A, B;
scanf("%d %d", &A,&B);
printf("%d", A - B);
}
#include <stdio.h>
int main()
{
double A,B;
scanf("%lf %lf", &A,&B);
printf("%.9lf", A/B);
}
#include <stdio.h>
int main()
{
int A, B;
scanf("%d %d", &A,&B);
printf("%d", A * B);
}
'🧐 Algorithm' 카테고리의 다른 글
[백준 10430번 C/C언어] 나머지 출력 (0) | 2021.01.22 |
---|---|
[백준 10171번&10172번 C/C언어] 고양이&개 출력 (0) | 2021.01.22 |
[백준 10718번 C/C언어] We love kriii (0) | 2021.01.22 |
[백준 2557번 C++] Hello World (0) | 2021.01.22 |
[백준 2557번 C/C언어] Hello World (0) | 2021.01.22 |