#include<stdio.h> int max(int x, int y) { int max = 0; if (x < y) { max = y; } else { max = x; } return max; } int main() { int a, b, c;
確定! 回上一頁