解题思路:
水题,开挂
注意事项:
参考代码:
#define _CRT_SECURE_NO_WARNINGS #include <iostream> #include <string> #include <vector> #include <set> #include <map> using namespace std; vector<int> numSet; void getNonZeroArray(int n) { int temp = 0; for (int i = 0; i < n; i++) { cin >> temp; if (temp != 0) numSet.push_back(temp); } } int main(int argc, char** argv) { int n = 0; cin >> n; getNonZeroArray(n); for (vector<int>::iterator it = numSet.begin(); it < numSet.end(); it++) { cout << *it << " "; } cout << endl; cout << numSet.size() << endl; return 0; }
0.0分
0 人评分
C语言程序设计教程(第三版)课后习题8.1 (C语言代码)浏览:573 |
C语言程序设计教程(第三版)课后习题6.1 (C语言代码)浏览:582 |
C语言训练-数字母 (C语言代码)浏览:648 |
出圈】指针malloc版浏览:377 |
IP判断 (C语言代码)浏览:592 |
青年歌手大奖赛_评委会打分 (C语言代码)浏览:2248 |
C语言程序设计教程(第三版)课后习题6.3 (C语言代码)浏览:405 |
管理学院的人数 (Java代码)浏览:560 |
Manchester- 求之N内的素数浏览:1510 |
C语言程序设计教程(第三版)课后习题6.10 (C语言代码)浏览:628 |