10 #include <stdio.h> 11 12 void func(int x, int y, int *sum, int *mul) { 13 *sum = x + y; 14 *mul = x * y;
確定! 回上一頁