1735 : 분수 합

풀이

중학교의 추억을 되새겨보자!

룰루랄라~

코드

#include <stdio.h>
int a, b, c, d;
int gcd(int a, int b) { return b ? gcd(b, a%b) : a; }
int main() {
	scanf("%d %d %d %d", &a, &b, &c, &d);
	a = a*d + b*c, c = b*d, b = gcd(a, c);
	printf("%d %d", a/b, c/b);
	return 0;
}

아무말

백준, 백준 온라인 저지, BOJ, Baekjoon Online Judge, C, C++, 씨, 씨쁠쁠, JAVA, algorithm, 자바, 알고리즘, 자료구조, 문제, 문제 풀이, 풀이

wookje.kwon's profile image

wookje.kwon

2017-08-08 19:57

Read more posts by this author