Chinaunix首页 | 论坛 | 博客
  • 博客访问: 2341706
  • 博文数量: 816
  • 博客积分: 10000
  • 博客等级: 上将
  • 技术积分: 5010
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-17 17:57
文章分类

全部博文(816)

文章存档

2011年(1)

2008年(815)

分类:

2008-12-17 18:05:37

某一城市规定。每月每人用水不超过2吨。则按每吨0.3元计算。若大于2吨但不超过4吨,则其中2吨按0.3元收费,剩余部分按每吨0.6元收费。用c++编程。


以下是我编的程序
#include
#include
using namespace std;
int main()
{
double x,y;
cout<<"请输入所用的水量!";
cin>>x;
{
if(x<=2) y=0.3*x;
else if(x>2&&x<=4) y=(x-2*0.3)0.6
else
cout<<"Sorry,Please input correct number!"< cout<<"Report: This month water fee is: "< }
}


--------------------Configuration: shit17 - Win32 Debug--------------------
Compiling...
f.cpp
d:\例子\shit17\f.cpp(1) : fatal error C1083: Cannot open include file: 'iosteam': No such file or directory
Error executing cl.exe.

shit17.exe - 1 error(s), 0 warning(s)
请问错在哪里了

--------------------next---------------------

阅读(1197) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~