1. C语言编程 停车管理~~~求速答~~~~QAQ
我做的实验;运行结果如下;可以的话,采纳后我发给你;
2. 帮忙做一下!C语言程序设计习题
1.第一题的程序如下,答案是2.500000。
#include <stdio.h>
void main()
{int a=7;
float x=2.5,y=4.7;
float s;
s=x+a%3*(int)(x+y)%2/4;
printf("%f",s);
}
2.第二题的整个程序如下:
#include <stdio.h>
void main()
{int a;
float f;
printf("Input number:");
scanf("%f,%d",&f,&a);
printf("f=%f,a= %d\n" ,f,a);
}
3.答案:2 1
4.答案:1
5.答案:2
6.你的程序有些小错误,应该如下:答案为 :-1
#include <stdio.h>
void main()
{int a=100,x =10,y=20,okl=5,ok2=0;
if (x<y)
if(y!=10)
if(!okl) a=1;
else
if(ok2) a=10;
a=-1;
printf( "%d\n",a );
}
7.答案:2
8.答案:0
9.答案:1
10.答案:a=2,b=1,c=1
3. C语言编程:请编出租车计费程序
#include
"iostream"
using
namespace
std;
int
main()
{
int
index;
double
per;
double
qibu;
int
kilometre;
double
pay
=
0;
cout
<<"输入里程数(公里):";
cin
>>
kilometre;
cout
<<"选择车辆:1.桑塔纳
2.夏利"<<endl;
cin>>index;
if(index==1)
{
per
=
2.7;
qibu
=
4;
}
else
{
per
=
2.1;
qibu=3;
}
if(kilometre>3)
pay
=
qibu
+
(kilometre-3)*per;
else
pay
=
qibu;
cout
<<"总价为:"<<pay<<endl;
return
0;
}
你也可以用结构数组来保存单价和起步费