(1) C语言 有3个数a,b,c,要求按大小顺序把它们输出 (2) 判断一个数n能否被3和5整除 要传统流程图和NS图。
发布网友
发布时间:2022-05-02 23:34
我来回答
共2个回答
热心网友
时间:2023-10-09 22:27
#include <stdio.h>
main()
{float a,b,c,t;
scanf("%f%f%f",&a,&b,&c);
if a>b then
{t=a;
a=b;
b=t;
}
if a>c then
{t=a;
a=c;
c=t;
}
if b>c then
{t=b;
b=c;
c=t;
}
printf("%f,%f,%f\n",a,b,c);
}
热心网友
时间:2023-10-09 22:28
已发。