新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
//计算体积的函数volume,将长方体的长宽高传入,返回体积,并且体积单位
成都创新互联自2013年起,是专业互联网技术服务公司,拥有项目网站设计制作、成都做网站网站策划,项目实施与项目整合能力。我们以让每一个梦想脱颖而出为使命,1280元长沙县做网站,已为上家服务,为长沙县各地企业和个人服务,联系电话:18980820575
//是毫米,你如果要修改单位转换,比如1英寸=33毫米,则只要将volume函数
//中的三个“6”改成三个“33”就行了
#includestdio.h
float volume(float high,float width,float length){
return high*width*length*6*6*6;
}
void main()
{
float high,width,length;
printf("please input high,width,length:");
scanf("%f,%f,%f",high,width,length);
printf("the volume:%f",volume(high,width,length));
}
基本的功能, 输入异常之类的判定没有加
#include stdio.h
#define METER_TO_CM ((float)100)
#define FOOT_TO_METER ((float)0.3048)
#define FOOT_TO_INCH (12)
int main()
{
float centimetre;
float temp;
int foot = 0;
int inch = 0;
printf("Please input the value(cm):\n");
scanf("%f", centimetre);
temp = centimetre / METER_TO_CM / FOOT_TO_METER; //计算英尺值(包含小数)
//转换为相应的英尺和英寸
foot = (int)temp;
inch = (temp - foot) * FOOT_TO_INCH;
printf("%d %d\n", foot, inch);
return 0;
}
#includestdio.h
void trans(int sec){
int hour,min;
hour=sec/3600; //计算时 3600进制
min=(sec%3600)/60; //计算分 60进制
sec=(sec%3600)%60; //计算秒 余下的全为秒数
printf("%d时:%d分:%d秒\n",hour,min,sec);
}
int main(){
int sec;
printf("请输入秒数:\n");
scanf("%d",sec);
trans(sec);
return 0;
}
可以自己试试
#includestdio.h void sort(int a[], int size) { int i,j; for(i=0;isize-1;i++) for(j=0;jsize-i-1;j++) if(a[j]a[j+1]) { int t; t=a[j]; a[j]=a[j+1]; a[j+1]=t; } } main() { int i,a[10]; for(i=0;i10;i++) scanf("%d",a[i]); sort(a,10); for(i=0;i10;i++) printf("M",a[i]); printf("\n"); } 函数sort实现冒泡排序