运行 ❯
获取你
自己的
网站
×
更改方向
更改主题,深色/浅色
转到 Spaces
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { vector<int> numbers = {1, 7, 3, 5, 9, 2}; auto it = find(numbers.begin(), numbers.end(), 3); if (it != numbers.end()) { cout << "The number 3 was found!"; } else { cout << "The number 3 was not found."; } return 0; }
已找到数字 3!