码迷,mamicode.com
首页 > 编程语言 > 详细

小学生趣味C++编程第23课 打车费用

时间:2020-04-14 01:13:31      阅读:93      评论:0      收藏:0      [点我收藏+]

标签:name   space   ++   stream   com   https   else   std   class   

小学生c++编程资料

链接:https://pan.baidu.com/s/1FfOirxJ9rrY7rxtHUM4W_A 
提取码:uqm9 

#include<iostream>
using namespace std;
int main()
{
  int lucheng,shijian;
  float feiyong=0; 
  cin>>lucheng;
  if(lucheng>10)
    feiyong=6+(10-2)*1.8+(lucheng-10)*1.8*1.5;
  else 
    if(lucheng>2) 
	  feiyong=6+(lucheng-2)*1.8;
    else
	  feiyong=6;
  cin>>shijian;
  feiyong+=(shijian/3)*1;
  cout<<feiyong<<endl;  
  return 0;
}

  

小学生趣味C++编程第23课 打车费用

标签:name   space   ++   stream   com   https   else   std   class   

原文地址:https://www.cnblogs.com/kixiaoyuan/p/12695033.html

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