PAT基础编程题目-7-6 混合类型数据格式化输入 题目详情 题目地址:https://pintia.cn/problem-sets/14/problems/786 解答 C语言版 #include<stdio.h> int main() { float f1, f2; int i; char c; scanf("%f %d %c %f", &f1, &i, &c, &f2); printf("%c %d %.2f %.2f\n", c, i, f1, f2); ...