程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> for-這個程序有什麼問題,為什麼是錯誤的?

for-這個程序有什麼問題,為什麼是錯誤的?

編輯:編程綜合問答
這個程序有什麼問題,為什麼是錯誤的?

#include
using namespace std;

void swap(int x, int y)
{
int z = x;
x = y;
y = z;
}

int main()
{
int shu[] = { 3, 0, 2, 1, 7, 11, 9, 4, 1, 6 };
for (int i = 0; i < 10; i++)
{
int n = i;
for (int j = i + 1; j < 10; j++)
{
if (shu[j] < shu[n]) n = j;
}
swap(shu[i], shu[n]);
}
for (int i = 0; i < 10; i++)
cout << shu[i] << endl;
}

最佳回答:


void swap(int x, int y)
->
void swap(int& x, int& y)
看看

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved