数字分类 (20)———PAT真题乙级

题目描述

给定一系列正整数,请按要求对数字进行分类,并输出以下5个数字:

A1 = 能被5整除的数字中所有偶数的和;
A2 = 将被5除后余1的数字按给出顺序进行交错求和,即计算n1-n2+n3-n4...;
A3 = 被5除后余2的数字的个数;
A4 = 被5除后余3的数字的平均数,精确到小数点后1位;
A5 = 被5除后余4的数字中最大数字。

输入描述:

每个输入包含1个测试用例。每个测试用例先给出一个不超过1000的正整数N,随后给出N个不超过1000的待分类的正整数。数字间以空格分隔。


 

输出描述:

对给定的N个正整数,按题目要求计算A1~A5并在一行中顺序输出。数字间以空格分隔,但行末不得有多余空格。
若其中某一类数字不存在,则在相应位置输出“N”。

输入例子:

13 1 2 3 4 5 6 7 8 9 10 20 16 18

输出例子:

30 11 2 9.7 9
// test.c++.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//

#include <iostream>
#include <string>
#include <algorithm>
#include <math.h>
#include <iomanip>		//要用到格式控制符
#include <cstring>

using namespace std;


int main()
{
	int T;
	int a[1010];
	int A1 = 0;
	int A2 = 0;
	int A3 = 0;
	double A4 = 0, flag = 0;
	int m = 1;
	int A5 = 0;
	cin >> T;
	for (int i = 0; i < T; i++)
	{
		cin >> a[i];
	}
	for (int i = 0; i < T; i++)
	{
		if ((a[i] % 5 == 0)&&(a[i] % 2 == 0))
		{
			A1 = A1 + a[i];
		}
	}
	if (A1 == 0)
	{
		cout << "N" << " ";
	}
	else
	{
		cout << A1 << " ";
	}
	
	for (int i = 0; i < T; i++)
	{
		if (a[i] % 5 == 1)
		{
			A2 += a[i] * m;
			m = -m;
		}
	}
	if (A2 == 0)
	{
		cout << "N" << " ";
	}
	else
	{
		cout << A2 << " ";
	}
	for (int i = 0; i < T; i++)
	{
		if (a[i] % 5 == 2)
		{
			A3++;
		}
	}
	if (A3 == 0)
	{ 
		cout << "N" << " ";
	}
	else
	{
		cout << A3 << " ";
	}
	for (int i = 0; i < T; i++)
	{
		if (a[i] % 5 == 3)
		{
			A4 += a[i];
			flag++;
		}
	}
	if (A4 <= 0)
	{
		cout << "N" << " ";
	}
	else
	{
		cout << fixed << setprecision(1) << A4/flag << " ";
	}
	
	for (int i = 0; i < T; i++)
	{
		if (a[i] % 5 == 4)
		{
			if (A5 < a[i])
			{
				A5 = a[i];
			}
		}
	}
	if (A5 == 0)
	{
		cout << "N";
	}
	else
	{
		cout << A5;
	}
}

猜你喜欢

转载自blog.csdn.net/feissss/article/details/84259247