收起
#include <stdio.h> int main() { int a; float b; char c; scanf("%d,%f,%c",&a,&b,&c); printf("%d\n%.1f\n%c\n",a,b,c); return 0; }
报告相同问题?