多重条件选择结构

•星星公司致力于信件快递业务,收费标准为500克6元,超过500克9元;多于100公里加5元。
•火车票12岁以下半价,如果是残疾人半价。
•女士65岁退休,男士60岁退休

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/******************************************************************************
multBranch

*******************************************************************************/
#include <iostream>
using namespace std;

int main()
{
   int 	c,l; float   w; 		//定义整型变量
    cout<<"please input w and l: ";             //提示输入
    cin>>w>>l;		//读入快件重量w和公里数
    if(w<=500){
	if(l>100)c=6+5;
    else c=6; 
    } 
    else {
	if(l>100)c=9+5;
            else c=9;
    }		
cout<<"c="<<c<<endl;
    return 0;
}
Scroll to Top