1楼:匿名用户
1、#include “stdio.h”
main()
2、#include “专stdio.h”
main()
3、#include “stdio.h”
#include "math.h"
main()
2楼:匿名用户
#include "stdio.h"
#define pi 3.14
void main()
#include "stdio.h"
void main()
#include "stdio.h"
#include "math.h"
void main()
3楼:丁配龙
这些题目这么基础,lz为什么不试着自己解决呢?
4楼:匿名用户
同意楼上观点,基础题还是要自己慢慢练习的……
5楼:匿名用户
编程实现学生管理系统
c语言编程题
6楼:匿名用户
#include
#include
main()
}if(flag)
printf("price:%5.2f\n",price);
system("pause");}
7楼:匿名用户
#include
#include
intmain(void)
;intarea_extra_money[5]=;
intarea_lenth[2]=;
printf("pleaseinputareanumberandweigh(eg:0,10.5):\n");
scanf("%d,%f",&input_area,&weigh);
if(input_area
printf("errorinarea\n");
else
return0;}
8楼:欧觅潘安然
while(s[i]!='0')i++;
应该改为while(s[i]!='\0')i++;
注意字符串结束符号为'\0',不是'0'
9楼:听不清啊
#include
int main()
for(i=0; iprintf("%d ",a[i]);
return 0;}
10楼:
#include
intmain()
elseif(cost<100)
realcost=cost;
elseif(cost>=100&&cost<200)realcost=cost-30;
elseif(cost>=200&&cost<300)realcost=cost-60;
else
realcost=cost-100;
printf("优惠后的付款金额为:%.2f\n",realcost);
return0;
}示例运行结果:
顾客购买图书的总金额: 250
优惠后的付款金额为: 190.00
顾客购买图书的总金额: 88
优惠后的付款金额为: 88.00
顾客购买图书的总金额: 300
优惠后的付款金额为: 200.00
11楼:匿名用户
如果不论金额只允许扣减一次就很简单:
int foo(int before)
12楼:
int money,pay;
printf("输入金额:");
scanf("%d",&money);
if(money >= 300)
pay = money - 100;
else if(money >= 200)pay = money - 60;
else if(money >= 100)pay = money - 30;
else
pay = money;
printf("实付金
额:%d",pay);
C语言程序设计C题目:邮资计算,c语言编程 计算邮资
1楼 匿名用户 首先num 0 0你没有排除 其次后边你直接排序是排不出结果的,因为里面有很多重复值。我给你重写了程序。 include int num 9999 void main int count i for i 0 inum j 1 s printf 所构成的邮资是 for i 0 i pr...
c语言程序设计跪求两题编写程序题答案1从键盘
1楼 匿名用户 1 把对应的字符变量在输入以后,例如输入了z,则利用算法 z a a 就可得到对应的小写字母 2 圆的周长 2 pi r,面积 pi r r 其中pi可以定义为一个常变量,例如const int pi 3 14 即可 2楼 祈风 用26个 if 好吧我没学过 用scanf 公式 输出...
C语言题目,编写程序,计算公式:y 1+
1楼 荣儿侃游戏 题目应该是y 1 1 2 2 1 3 3 1 4 4 1 n n吧? 这个其实好简单的啊。 如下 include int main printf 当n d时,1 1 2 2 1 3 3 1 4 4 1 n n f n y 2楼 天蝎瑜瑜瑜 y kx b 2煎蛋 用c语言编程计算数学...