标签:style blog http color os io 2014 art



#include <iostream> #include <cstdio> using namespace std; int main(int argc, char *argv[]) { double a,b; cin>>a; while (cin>>b) { if (b==999) { printf("End of Output\n"); break; } printf("%.2f\n",(b-a)); a=b; } return 0; }
#include <iostream>
#include <cstdio>
using namespace std;
int main(int argc, char *argv[])
{
double a,b;
cin>>a;
while (cin>>b)
{
if (b==999)
{
printf("End of Output\n");
break;
}
printf("%.2f\n",(b-a));
a=b;
}
return 0;
}标签:style blog http color os io 2014 art
原文地址:http://www.cnblogs.com/2014acm/p/3885970.html