| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 6212 人关注过本帖
标题:编写函数,把数组中所有奇数放在另一个数组中返回。
取消只看楼主 加入收藏
Soda_kun
Rank: 1
等 级:等待验证会员
帖 子:4
专家分:0
注 册:2018-3-6
结帖率:100%
收藏
已结贴  问题点数:20 回复次数:3 
编写函数,把数组中所有奇数放在另一个数组中返回。
来源:教育部考试中心 全国计算机等级考试二级教程——C语言程序设计

9.29 编写函数,把数组中所有奇数放在另一个数组中返回。

越改bug越多,还看不懂错误信息,实在是尽力了,求各位大佬帮忙

代码和错误信息

1   #include <stdio.h>
2   int extract(int [],int,int [],int);
3   void output(int []);
4   main()
5   {int s[]={-2,-1,0,1,2,3,4,5,6,7,8,9,10,11,12};
6   int t[],i=15,j;
7   extract(int s[],int i,int t[],int j);
8   output(int t[],j);
9   }
10   extract(int a[],int b,int c[],int d);
11   {int e;d=0;
12   for(e=0,e<b,e++)
13   if(a[e]%2!=0){c[d]=a[b];d++};
14   return d;
15   }
16   output(int f[],int h;)
17   {int g;
18   for(g=0,g<h,g++)printf("%d",f[g]);
19   }

错误信息:
C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    In function 'int main()':
6   7    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] storage size of 't' isn't known
7   9    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] expected primary-expression before 'int'
7   7    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] expected primary-expression before 'int'
7   23    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] expected primary-expression before 'int'
7   31    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] expected primary-expression before 'int'
8   8    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] expected primary-expression before 'int'
C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    At global scope:
11   1    C:\Users\hoshi\Documents\计算机二级考试 C语言作业\9.29.cpp    [Error] expected unqualified-id before '{' token
搜索更多相关主题的帖子: 考试 C语言 int Documents 计算机二级 
2018-03-06 14:49
Soda_kun
Rank: 1
等 级:等待验证会员
帖 子:4
专家分:0
注 册:2018-3-6
收藏
得分:0 
附上程序文件
9.29.zip (732 Bytes)
2018-03-06 15:12
Soda_kun
Rank: 1
等 级:等待验证会员
帖 子:4
专家分:0
注 册:2018-3-6
收藏
得分:0 
回复 2楼 吹水佬
第一个错误解决了,感谢
2018-03-06 15:14
Soda_kun
Rank: 1
等 级:等待验证会员
帖 子:4
专家分:0
注 册:2018-3-6
收藏
得分:0 
回复 5楼 吹水佬
万分感谢!!
2018-03-06 15:32
快速回复:编写函数,把数组中所有奇数放在另一个数组中返回。
数据加载中...
 
   



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

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