教授100元/小時 副教授80元/小時 講師60元/小時 助教40元/小時ios
輸入教師的姓名 職稱 授課時數,輸出該教師課酬ide
#include<iostream> #include<iomanip> #include<string> using namespace std; int main() { int salary; class teacher{ public: string name; string title; int time; }; teacher T1; cout<<"請輸入:姓名 職稱 授課時數"<<endl; cin>>T1.name>>T1.title>>T1.time; if(string(T1.title)==string("教授")) { salary=T1.time*100; } else if(string(T1.title)==string("副教授")) { salary=T1.time*80; } else if(string(T1.title)==string("講師")) { salary=T1.time*60; } else if(string(T1.title)==string("助教")) { salary=T1.time*40; } else { cout<<"您的輸入有誤"; return 0; } cout<<T1.name<<T1.title<<" "<<"您的課酬爲"<<salary<<"元"<<endl; return 1; }
這個題學習了string類型和string()的用法,使用這個要#include<string>學習