TA的每日心情 | 开心 2014-6-18 08:29 |
---|
签到天数: 14 天 [LV.3]偶尔看看II
滴水大师
 
- 积分
- 2345
|
题目
解决代码及点评
- <pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"></pre><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code"><pre code_snippet_id="91880" snippet_file_name="blog_20131202_1_2646179" class="cpp" name="code">/*
- 某航空公司规定:在旅游旺季7─9月份,若订票超过20张,优惠票价的15%,20张以下,优惠5%;
- 在旅游淡季1─5月、10月、11月份订票超过20张,优惠30%,20张以下,优惠20%;其余月份不优惠。
- 请编程序能根据月份和旅客订票张数决定优惠率。
- */
-
- #include <stdio.h>
- #include <stdlib.h>
-
- void privilege(int month,int tickets)
- {
- if ((month>=7)&&(month<=9))
- {
- if (tickets<20)
- {
- printf("优惠5%");
- }
- else
- {
- printf("优惠15%");
- }
- }
- else if (((month>=1)&&(month<=5))||(month==10)||(month==11))
- {
- if (tickets<20)
- {
- printf("优惠20%");
- }
- else
- {
- printf("优惠30%");
- }
- }
- else
- {
- printf("不优惠");
- }
- }
- void main()
- {
- int month;
- int tickets;
-
- scanf_s("%d%d",&month,&tickets);
-
- privilege(month,tickets);
-
- system("pause");
- }</pre><br></pre></pre></pre>
|
|