c语言改错 fun功能有小到大输出两实数
來源:互聯網 2010-03-10 17:06:21 評論
分類: 電腦/網絡 >> 程序設計 >> 其他編程語言
問題描述:
#include"stdio.h"
main()
{fun();
getch();
}
fun(float a,float b)
{
float t /错/
scanf("%f %f",&a,&b);
if(a
{t=a ;a=b ;b=t}
printf("%5.2,%5.2f\n",&a,&b); /错/
}
參考答案:
#include
void fun();
int main()
{fun();
getch();
return 0;
}
void fun()
{
float a,b;
float t; /错/
scanf("%f %f",&a,&b);
if(a
{t=a ;a=b ;b=t}
printf("%5.2,%5.2f\n",a,b); /错/
}
[b]分类:[/b] 电脑/网络 >> 程序设计 >> 其他编程语言[br][b]问题描述:[/b][br]#include"stdio.h"
main()
{fun();
getch();
}
fun(float a,float b)
{
float t /错/
scanf("%f %f",&a,&b);
if(a
{t=a ;a=b ;b=t}
printf("%5.2,%5.2f\n",&a,&b); /错/
}[br][b]参考答案:[/b][br]#include
void fun();
int main()
{fun();
getch();
return 0;
}
void fun()
{
float a,b;
float t; /错/
scanf("%f %f",&a,&b);
if(a
{t=a ;a=b ;b=t}
printf("%5.2,%5.2f\n",a,b); /错/
}