| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1061 人关注过本帖
标题:这是在一串数字中找偶数的,麻烦大家看一下,求指正
取消只看楼主 加入收藏
zxjbc
Rank: 1
等 级:新手上路
帖 子:28
专家分:0
注 册:2010-11-29
结帖率:90.91%
收藏
 问题点数:0 回复次数:0 
这是在一串数字中找偶数的,麻烦大家看一下,求指正
#include<stdio.h>
#define  ARR_SIZE 10
Select(int num[],int n)
{
   int i;
   for(i=0;i<n;i++)
   {
     if(num[i]%2==0)
     {
      printf("%d",num[i]);

     }
   }

}
main()
{
    int num[ARR_SIZE];
    int n,i;
    printf("please enter the total number:");
    scanf("%d",&n);
    printf("please enter the integers:");

    for(i=0;i<n;i++)
    {
      scanf("%d",&num[i]);
    }
    Select(num,n);

    printf("%2d",num[i]);

    getch();
}
搜索更多相关主题的帖子: 偶数 数字 麻烦 
2010-12-18 16:08
快速回复:这是在一串数字中找偶数的,麻烦大家看一下,求指正
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.028754 second(s), 8 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved