C++冒泡排序法求5个数字中的最大值怎么写?
收起
知与谁同
2018-07-17 15:11:26
1864
0
3
条回答
写回答
取消
提交回答
-
for (int i=0;i<strlen(a);i++)
for(int j=0;j<strlen(a)-i-1;j++)
{
if(a[j]>a[j+1])
{
temp=a[j]
a[j]=a[j+1]
a[j+1]=temp
}
}
return a[strlen(a)-1]
2019-07-17 22:50:36
-
int a[5]= {2,6,4,8,5};
int max=0;
for (int i = 0; i < 5; i++)
{
if (max < a[i])
max = a[i]
}
2019-07-17 22:50:36
-
int a[5]= {2,6,4,8,5};
int max=0;
for (int i = 0; i < 5; i++)
{
if (max < a[i])
max = a[i]
}
2019-07-17 22:50:36