C++數(shù)組形參的使用
//第一種
#include "stdafx.h"
int arr[]={1,2,3,4,5,6,7,8};
int fun(int arr1[],int len)
{
int sum=0;
for(int i=0;i
{
sum+=arr[i];
}
return sum;
}
int _tmain(int argc, _TCHAR* argv[])
{
int len1=sizeof(arr)/sizeof(int);
int sum1=fun(arr,len1);
printf("%d",sum1);
return 0;
}
// a003.cpp : 定義控制臺應用程序的入口點。
//
//第二種
#include "stdafx.h"
double at[]={1.1,2.2,3.3,5.7};
double fun3(double *pi,int len)
{
double all=0.0;//要賦值?。。。。。。?/div>
看屁屁www成人影院,亚洲人妻成人图片,亚洲精品成人午夜在线,日韩在线 欧美成人
(function(){
var bp = document.createElement('script');
var curProtocol = window.location.protocol.split(':')[0];
if (curProtocol === 'https') {
bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
}
else {
bp.src = 'http://push.zhanzhang.baidu.com/push.js';
}
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
for(int i=0;i
{
all+=*pi;
pi++;//數(shù)組加加
}
return all;
}
const int xy=200;
int _tmain(int argc, _TCHAR* argv[])
{
double r1=fun3(at,sizeof(at)/sizeof(double));
printf("%f",r1);
return 0;
}
關鍵詞:
C++數(shù)組形
相關推薦
-
-
-
-
-
-
-
xiaohua | 2002-08-16
-
-
評論