
编写一个C程序,找到需要检查的数组类型,判断给定数组中的元素是偶数还是奇数,或者两者都有。
用户需要输入一个整数数组,然后显示数组的类型。
示例1 − 输入:5 3 1,输出:奇数数组。
示例2 − 输入:2 4 6 8,输出:偶数数组。
示例3 − 输入:1 2 3 4 5,输出:混合数组。
参考下面给出的算法,找到用户输入的数组类型。
步骤1 − 在运行时读取数组的大小。
类似智能机器人程序,以聊天对话框的界面显示,通过输入问题、或点击交谈记录中的超链接进行查询,从而获取访客需要了解的资料等信息。系统自动保留用户访问信息及操作记录。后台有详细的设置和查询模块。适用领域:无人职守的客服系统自助问答系统智能机器人开发文档、资源管理系统……基本功能:设置对话界面的显示参数设置各类展示广告根据来访次数显示不同的欢迎词整合其他程序。
4
步骤2 − 输入数组元素。
步骤3 − 如果数组的所有元素都是奇数,则打印“奇数”。
步骤4 − 如果数组的所有元素都是偶数,则打印“偶数”。
步骤5 − 否则,打印“混合”。
以下是C程序,用于找到用户输入的数组类型 −
演示
#include<stdio.h>
int main(){
int n;
printf("enter no of elements:");
scanf("%d",&n);
int arr[n];
int i;
int odd = 0, even = 0;
printf("enter the elements into an array:</p><p>");
for(i = 0; i < n; i++){
scanf("%d",&arr[i]);
}
for(i = 0; i < n; i++){
if(arr[i] % 2 == 1)
odd++;
if(arr[i] % 2 == 0)
even++;
}
if(odd == n)
printf("Odd Array");
else if(even == n)
printf("Even Array");
else
printf("Mixed Array");
return 0;
}当上述程序被执行时,它产生以下输出 −
Run 1: enter no of elements:5 enter the elements into an array: 2 4 8 10 12 Even Array Run 2: enter no of elements:5 enter the elements into an array: 1 23 45 16 68 Mixed Array
以上就是C程序用于查找用户输入的数组类型的详细内容,更多请关注php中文网其它相关文章!
每个人都需要一台速度更快、更稳定的 PC。随着时间的推移,垃圾文件、旧注册表数据和不必要的后台进程会占用资源并降低性能。幸运的是,许多工具可以让 Windows 保持平稳运行。
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号