国产成人毛片视频|星空传媒久草视频|欧美激情草久视频|久久久久女女|久操超碰在线播放|亚洲强奸一区二区|五月天丁香社区在线|色婷婷成人丁香网|午夜欧美6666|纯肉无码91视频

c語(yǔ)言findmax函數(shù) c語(yǔ)言用指針編寫findmax函數(shù)找到最大值并輸出其下標(biāo)?

c語(yǔ)言用指針編寫findmax函數(shù)找到最大值并輸出其下標(biāo)?#include<stdio.h>int findmax(int*p,int n){int i int max=0 for(i=0 i

c語(yǔ)言用指針編寫findmax函數(shù)找到最大值并輸出其下標(biāo)?

#include<stdio.h>int findmax(int*p,int n){int i int max=0 for(i=0 i< n i)if(p[i]> p[max])max=i printf(%dn,p[max])return max}int main(void){int buf[5]={6,

2,9,

1,8}findmax(buf,5)return 0}