作者kingofsdtw (不能閒下來!!)
看板C_and_CPP
標題[問題] function初始值無法編譯
時間Fri Apr 27 14:39:33 2012
開發平台(Platform): (Ex: VC++, GCC, Linux, ...)
dev
額外使用到的函數庫(Library Used): (Ex: OpenGL, ...)
iostream.h
問題(Question):
function(int i=6)無法編譯
餵入的資料(Input):
void votes(int *a,int b=6){
int i=0;
while(i<b){
a[i]=rand()%MOD+1;
if(check(a,i)==1)i++;
}
}
預期的正確結果(Expected Output):
檔名.cpp
可編譯
錯誤結果(Wrong Output):
無法編譯
程式碼(Code):(請善用置底文網頁, 記得排版)
http://codepad.org/W2hGwNVG
補充說明(Supplement):
請益哪邊出錯了0.0
範例大意是這樣打阿>\\\\<
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 122.117.8.99
※ 編輯: kingofsdtw 來自: 122.117.8.99 (04/27 14:40)
→ james732:第7行或第24行的 =6 寫其中一個就好,不用寫兩次 04/27 14:50
→ kingofsdtw:感謝!! 原來只要打一次@_@! 04/27 14:58
→ diabloevagto:一般都寫在第六行比較多吧,放在h檔 04/27 16:25
推 LPH66:我沒記錯的話寫在 .h 檔用的人才看得到 04/28 17:07
→ LPH66:如果寫在函式上的話用的人不知道那個可以省略一樣會出事 04/28 17:08