- 1、本文档共61页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
经典c语言例程个例程(Classic C language routines, routines).doc
经典c语言例程39个例程(Classic C language routines, 39 routines)
[recommended reading] classic C language routines, a total of 39 routines, 748495575
[program 1]
Title: 1, 2, 3, 4 numbers, how many different numbers can be formed without each other and three digits? How much are they?
1., program analysis: can fill in one hundred, ten, a number of digits are 1, 2, 3, 4. Make up all the permutations and then go
An arrangement that does not meet the requirements.
2. program source code:
(main)
{
Int, I, J, k;
Printf (\n);
For (i=1; i5; i++)
For (j=1; j5; j++)
For (k=1; k5; k++)
{
If (I, =ki, =jj, =k!)
Printf (%d,%d,%d\n, I, J, K);
}
}
[program 2]
Title: bonuses paid by enterprises are based on profits. When the profit (I) is below or equal to 100 thousand yuan, the bonus can be raised by 10%; the profit is high
At 100 thousand yuan, less than 200 thousand yuan, less than 100 thousand yuan in part, according to 10% Commission, higher than 100 thousand yuan in part, cocoa mention
In 7.5%, between 200 thousand and 400 thousand, a percentage of 200 thousand yuan is 5% Commission; between 400 thousand and 600 thousand is higher
400 thousand yuan part, can deduct a percentage from 3%; between 600 thousand and 1 million when, above 600 thousand yuan part, can deduct a percentage of 1.5%, be higher than
1 million yuan, more than 1 million yuan in part, according to 1% Commission, from the keyboard input month profits I, beg should be awarded bonus total?
1. program analysis: please use a few axes to boundaries, positioning. When defining the definition, you need to define the bonus as a growth integer.
2. program source code:
(main)
{
Long int i;
Int, bonus1, bonus2, bonus4, bonus6, bonus10, bonus;
Scanf (%ld, i);
Bonus1=100000*0.1; bonus2=bonus1+100000*0.75;
Bonus4=bonus2+200000*0.5;
Bonus6=bonus4+200000*0.3;
Bonus10=bonus6+400000*0.15;
If (i=100000)
Bonus=i*0.1;
Else if (i=200000)
Bonus=bonus1+ (i-100000) *0.075;
Else if (i=400000)
Bonus=bonus2+ (i-200000) *0.05;
Else if (i=600000)
B
您可能关注的文档
- 电话销售 客户分类 客户类型 解决方案.doc
- 红狮环保 水泥窑协同处置项目环评.docx
- 世纪中国近代文学研究的曲折历程.doc
- 2010年全国自考基础会计学模拟试卷(六)(2010 national self taught basic accounting simulation paper (six)).doc
- 金算盘金财工程解决方案简介V[]..doc
- BDTC2015-南京大学:基于R语言的跨平台大数据机器学习与数据分析系统.doc
- 形式文化学电影批评理论的建构和实践——《画皮》之“电影重写”现象和电影批评话语之建构.doc
- 新视野大学英语第二版听说教程短对话听力原文及翻译.doc
- 2008年注册税务师考试《税法一》练习题(Tax law examination for registered tax agents in 2008).doc
- 层高层住宅楼的建筑与结构设计地下室及基础结构设计.doc
文档评论(0)