6267: 糖果分发

描述

某幼儿园里,有5个小朋友编号为1,2,3,4,5,他们按自己的编号顺序围坐在一张圆桌旁。他们身上都有若干个糖果,现在他们做一个分糖果游戏。从1号小朋友开始,将他的糖果均分三份(如果有多余的,则他将多余的糖果吃掉),自己留一份,其余两份分给他的相邻的两个小朋友。接着2号、3号、4号、5号小朋友也这如果做。问一轮后,每个小朋友手上分别有多少糖果。

输入

输入一行,五个整数a,b,c,d,e。

输出

输出一行,五个整数(分别表示5个小朋友的剩余糖果数)。

样例输入

7 7 2 8 5

样例输出

8 4 4 6 3

#include

#include

using namespace std;

void time(int *a1, int *a2,int *a3) {

int temp = 0;

temp = *a2 / 3;

*a1 += temp;

*a3 += temp;

*a2 = temp;

}

int main()

{

int a1, a2, a3, a4, a5;

cin >> a1 >> a2 >> a3 >> a4 >> a5;

time(&a5, &a1, &a2);

time(&a1, &a2, &a3);

time(&a2, &a3, &a4);

time(&a3, &a4, &a5);

time(&a4, &a5, &a1);

cout << a1 <<" "<< a2 << " " << a3 << " " << a4 << " " << a5;

}

你可能感兴趣的:(c++)