1.编写程序,判断一个数n是正数还是负数.

Include<stdio.h>
main()
{
	float n;
	scanf(“%f”,&n);
	if(n>0)
	{printf(“正数\n”);}
	else if (n==0)
	{printf(“0既不是正数,也不是负数!\n”);}
else printf(“负数\n”);

}

  

 

 2.编写程序,计算出租车的行驶距离与费用之间的关系.起步3km内8元;之后1.6元/km

#include<stdio.h>
main()
{
	float s,l;
	printf("输入行驶距离:\n");
	scanf("%f",&l);
	if(l<=3)
		s=8;
		else 
		s=(l-3)*1.6+8;
		printf("%.2f\n",s);

}

  

 

 3.输入一个数,判断是奇数还是偶数

#include<stdio.h>
main()
{
	int x;
	printf("输入一个数:\n");
		scanf("%f",&x);
	if (x%2==0)
	{printf("这是偶数\n");}
	else printf("这是奇数\n");
}

  

 

 4.输入一个数,输出它的绝对值(负数*-1就是绝对值)

#include<stdio.h>
main()
{
	float x,y;
	printf("输入一个数:\n");
		scanf("%f",&x);
	if (x<0)
	y=x*-1;
	else 
		y=x;
	printf("这个数的绝对值是:%.1f\n",y);
}

  

 

 5.输入2个数,输出较大数

#include<stdio.h>
main()
{
	float x,y;
	printf("输入两个数:\n");
		scanf("%f%f",&x,&y);
	if (y>x)
	printf("较大数是:%f\n",y);
	else 
	printf("较大数是:%f\n",x);
}

 

posted on 2021-10-20 21:19  王有胜  阅读(31)  评论(0)    收藏  举报