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

POJ 2871

时间:2015-06-11 12:42:43      阅读:113      评论:0      收藏:0      [点我收藏+]

标签:

#include<iostream>
#include<stdio.h>
#include<iomanip>
using namespace std;

int main()
{
	//freopen("acm.acm","r",stdin);
	double tem1;
	double tem2;
	cin>>tem1;
	while(cin>>tem2)
	{
		if(tem2 == 999)
			break;
		cout<<setiosflags(ios::fixed)<<setprecision(2)<<tem2-tem1<<endl;
		tem1 = tem2;
	}
	cout<<"End of Output"<<endl;
}

 

POJ 2871

标签:

原文地址:http://www.cnblogs.com/gavinsp/p/4568693.html

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