c语言套装
Turbo C就可以的。编辑文本的时候可以用utraledit
至于vc++之类的我是不推荐初学者使用的
Ⅱ C语言编程,题目:周末商场促销,某品牌服装即可以买套装,又可以买单件,若买的不少于50套,每套80
#include<stdio.h>
int Get(int count)
{
if(count>=50)
return count*80;
else
return count*90;
}
int Pay(int shangyi,int kuzi)
{
int gold=0;
int left=0;
if(shangyi==kuzi)
gold=Get(shangyi);
else if(shangyi>kuzi)
{
gold=Get(kuzi);
left=shangyi-kuzi;
gold+=left*60;
}
else if(shangyi<kuzi)
{
gold=Get(shangyi);
left=kuzi-shangyi;
gold+=left*45;
}
return gold;
}
int main()
{
int shangyi=55;
int kuzi=50;
int gold=Pay(shangyi,kuzi);
printf("%d ",gold);
system("pause");
}
Ⅲ C语言问题某服装店经营3款套装,成套出售和单间出售均可。
/*不是奔着分来的,只是兴趣。。。。
没有仔细测,如果有问题,请留言
例子:输入3487
*/
#include<stdio.h>
#defineN2
#defineM3
intmain(){
intsy,kz;
inttc[M][N]={{1},{2},{3}};
inttc1,tc2,tc3;
printf("请输入所买上衣和裤子的件数:");
scanf("%d%d",&sy,&kz);
tc[0][1]=getPrice(kz,sy,50,80,90,60,45);
tc[1][1]=getPrice(kz,sy,45,82,87,65,35);
tc[2][1]=getPrice(kz,sy,100,75,95,65,45);
intx,i=0,j,k,t;
//数组排序:
for(x=0;x<M-1;x++)
{
if(tc[x][1]>tc[x+1][1])
{
t=tc[x+1][1];
tc[x+1][1]=tc[x][1];
tc[x][1]=t;
t=tc[x+1][0];
tc[x+1][0]=tc[x][0];
tc[x][0]=t;
}
if(x==M-2&&i<M-2){
x=-1;
i++;
}
}
for(x=0;x<M;x++)
{
printf("款式%d:%d元 ",tc[x][0],tc[x][1]);
}
return0;
}
intgetPrice(intkz,intsy,int_t,intupPrice,intlowPrice,intsyPrice,intkzPrice){
intprice=0;
if(kz==0)
price=sy*syPrice;
elseif(sy==0)
price=kz*kzPrice;
else
{
intt=kz>sy?sy:kz;
if(t>=_t)
price=t*upPrice+(kz-t)*kzPrice+(sy-t)*syPrice;
else
price=t*lowPrice+(kz-t)*kzPrice+(sy-t)*syPrice;
}
returnprice;
}
Ⅳ c语言编程 某服装批发商店经营套装,也单价出售,若买的不少于50套,每套80元,不足50套每套10
#include "stdio.h"
int main(void)
{
int imoney = 0;
int iWaist = 0;
int itrousers = 0;
printf("请分别输入需要买的上衣和裤子的数目:");
scanf("%d%d" ,&iWaist ,&itrousers);//可以加上对输入数值的正确性的判断
if ( iWaist >= itrousers )
{
if ( itrousers >= 50 )
{
imoney = itrousers * 80 + ( iWaist - itrousers )*60;
}
else
{
imoney = itrousers * 100 + ( iWaist - itrousers )*60;
}
}
else
{
if ( iWaist >= 50 )
{
imoney = iWaist * 80 + ( itrousers - iWaist )*45;
}
else
{
imoney = iWaist * 100 + ( itrousers - iWaist )*45;
}
}
printf("monye = %d\n", imoney);
return 0;
}
Ⅳ C语言。某服装店卖套装,若买的数量不少于50套,每套80;不足50套,每套90;单上衣60;单裤子45。求价钱
没有啊,我按照你的代码运行了,一下,输入的都是60 ,最终结果为4800,60*80=4800。你想多了,或者手抖了。
Ⅵ C语言。某服装店卖套装,若买的数量不少于50套,每套80;不足50套,每套90;单上衣60;单裤子
程序没有错,你错误的原因我猜是逗号错打成了中文的逗号(,)应该用英文的(,)
仔细看是有分别的 一个占2字节 一个占1字节
求采纳。