2016-02-15 Problem Solving►UVa UVa 12952 - Tri-du Contents 1. Problem2. Solution3. Code Problem題目網址 給你兩張卡,找出較容易贏的卡。 Solution輸出兩個值中的最大值。 CodeUVa 12952UVa 12952 - Tri-du1234567891011#include<stdio.h>#define MAX(a,b) ((a)>(b)?(a):(b))int main(){ int a, b; while (scanf("%d%d", &a, &b) != EOF) printf("%d\n", MAX(a, b)); return 0;} Newer UVa 908 - Re-connecting Computer Sites Older UVa 13012 - Identifying tea