C:变量交换输出; 作者: moedisk 时间: 2018-11-13 分类: C #include <stdio.h> int main(){ float a, b; scanf("%f%f",&a,&b); printf("%f%f",b,a); return 0; } 标签: none