{ va_list args; va_start(args, len); for(int j = 0; j < len; j++) { printf("%.1f\n", va_arg(args, double)); } va_end(args); }.
確定! 回上一頁