POJ 2583

 1 #include<iostream>
 2 #include<stdio.h>
 3 using namespace std;
 4 
 5 int main()
 6 {
 7     //freopen("acm.acm","r",stdin);
 8     int f_0;
 9     int f_1;
10     int f_2;
11     while(cin>>f_0>>f_1>>f_2)
12     {
13         cout<<3*f_2 - 3*f_1 + f_0<<" "<<6*f_2 - 8 * f_1 + 3*f_0<<" "<<10*f_2 - 15*f_1+6*f_0<<endl;
14     }
15 }
原文地址:https://www.cnblogs.com/gavinsp/p/4568602.html