题意似乎表述有误 j不一定大于0
其实用vector可以直接比较大小
#include <bits/stdc++.h> using namespace std; int main(){ int m, n, t; vector<int> x, y; cin >> m >> n; while(m--){ cin >> t; x.push_back(t); } while(n--){ cin >> t; y.push_back(t); } if(x<y) cout << -1; else if(x>y) cout << 1; else cout << 0; }
题意似乎表述有误 j不一定大于0
其实用vector可以直接比较大小