在線筆試,實在不懂爲何不直接像leetcode 那樣,直接給出測試API 參數,接口樣例,非要有一步本身從鍵盤獲取輸入參數。ios
如下,持續記錄吧:數組
(1)從鍵盤錄入多行數據,每行的多個整數做爲一個數組形式存儲.測試
示例輸入:code
1,2,3blog
4,5接口
7,8,9ci
#include<stdio.h> #include<iostream> #include<vector> #include<string> //輸入多行數組 int InputMutiint() { std::vector < std::vector<int> > m_array; std::vector<int> tmp; int a; char c; while (std::cin >> a) { tmp.push_back(a); c = getchar(); if (c == '\n') { m_array.push_back(tmp); tmp.clear(); } } return 0; } int main() { InputMutiint(); system("pause"); return 0; }