2020年2月9日 星期日

判斷誰大 , 練習fcn傳陣列

//判斷誰大 , 練習fcn傳陣列
#include <stdio.h>
#include <stdlib.h>

int maxv(int v[],int n)
{
int max=v[0],i;
for(i=1;i<n;i++)//第一個最大,所以從index=1開始比
{
if(v[i]>max)//如果比原的大就change
max=v[i];
}
return max;
}

int main(int argc, char *argv[])
{
int a[3]={11,22,3};
printf("%d\n",maxv(a,3));
int b[]={1,2,3,4,5,6,7,8,9};
printf("%d\n",maxv(b,9));
int c[]={11,21,33,43,52,62,71,18,19};
printf("%d\n",maxv(c,9));
return 0;
}
//參考此網站https://www.youtube.com/watch?v=Y68Gnrvw1k4&list=PLY_qIufNHc293YnIjVeEwNDuqGo8y2Emx&index=145

沒有留言:

張貼留言

algorithm

 #include <iostream> #include <string.h> using namespace std; int main(int argc, char** argv)  { for(int j=2;j<=100;j++)//j...