| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 1587 人关注过本帖
标题:这个该怎么改..
取消只看楼主 加入收藏
瘦不了噜er
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:30
专家分:135
注 册:2016-6-14
结帖率:91.67%
收藏
 问题点数:0 回复次数:2 
这个该怎么改..
程序代码:
  #include <conio.h>
  #include <stdio.h>   
int max;  

 int fun( int arr[ ],int n )  

 { int pos,i;    

 max = arr[0];   

 pos = 0;    

 for ( i=1; i<n; i++) 

 
      if (max < arr[i])     
      { max = arr[i]; 
      pos=i; }   
      return(pos);  

 }   

 void main()  

 { 
     int a[10]={1,4,2,7,3,12,5,34,5,9}, n; 

 fun(a,n);   

 printf("The max is: %d ,pos is: %d\n", max , n);  

 }  


图片附件: 游客没有浏览图片的权限,请 登录注册
2016-06-16 00:13
瘦不了噜er
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:30
专家分:135
注 册:2016-6-14
收藏
得分:0 
回复 2楼 linlulu001
程序代码:
  #include <conio.h>
  #include <stdio.h>   
int max,pos;  

 void  fun( int arr[ ],int n )   

 { int i;    

 max = arr[0];   

 pos = 0;    

 for ( i=1; i<n; i++) 

 
      if (max < arr[i])     
      { max = arr[i]; 
      pos=i; }   
      return;  

 }   

 void main()  

 { 
     int a[10]={1,4,2,7,3,12,5,34,5,9}, n=10; 

 fun(a,n);   

 printf("The max is: %d ,pos is: %d\n", max ,pos);  

 }  



我这样改应该对了吧..你说的接受返回值 最后那个位置总是显示的0
2016-06-16 09:34
瘦不了噜er
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:30
专家分:135
注 册:2016-6-14
收藏
得分:0 
回复 5楼 gz1347351162
warning C4715: 'fun' : not all control paths return a value


会这样..
2016-06-16 09:47
快速回复:这个该怎么改..
数据加载中...
 
   



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

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