開發平台(Platform): (Ex: Win10, Linux, ...)
Linux
問題(Question):
我本來以為auto可以這樣用,不過這種情況似乎不太適用??
我想要全程使用auto幫我推導,不過vector的size是unsigned我直接這樣用有問題
以我的範例難道我還是只能自己指定j的型態嘛(int)
有比較正確auto的方式嘛??感覺都會推導錯誤??
預期的正確結果(Expected Output):
test 1
test 0
錯誤結果(Wrong Output):
無窮迴圈
程式碼(Code):(請善用置底文網頁, 記得排版,禁止使用圖檔)
#include <iostream>
#include <vector>
using namespace std;
int main(){
vector<int> ans = {1,2,3};
auto n = ans.size();
for(auto j = n - 2;j >= 0;