码迷,mamicode.com
首页 > 其他好文 > 详细

软件工程第二次作业

时间:2015-04-13 22:26:37      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:

1 int Count(int first,int second,char third) 2 { 3     switch(third) 4     { 5     case +: 6 return (first+second); 7     case -: 8         return (first-second); 9     case *: 10         return (first*second); 11     case /: 12         return (first/second); 13     default : 14         return 0; 15     } 16 17 } 18 19 int UserUsing(linknode &L) 20 { 21     int right=0; 22     int record; 23     linknode p=L->next; 24     while(p    !=NULL) 25     { 26         cout<<"请输入计算结果:"; 27         cout<<p->num1<<p->ope<<p->num2<<"="; 28         cin>>record; 29         if(record==Count(p->num1,p->num2,p->ope)) 30             right++; 31         p=p->next; 32     } 33     return right; 34 } 35 void Show(int zongtishu,int zhengque) 36 { 37     cout<<"恭喜您答对了"<<zhengque<<"道题目"<<endl; 38     if(zongtishu-zhengque!=0) 39     { 40         cout<<"但很遗憾您答错了"<<(zongtishu-zhengque)<<"道题目"<<endl; 41     } 42 }

技术分享

软件工程第二次作业

标签:

原文地址:http://www.cnblogs.com/dzgl/p/4423160.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!