运行 ❯
获取
您自己的
网站
×
更改方向
更改主题,深色/亮色
转到 Spaces
#include <iostream> #include <vector> #include <algorithm> using namespace std; int main() { // Create a vector called numbers that will store integers vector<int> numbers = {1, 7, 3, 5, 9, 2}; // Find the smallest number auto it = min_element(numbers.begin(), numbers.end()); cout << *it; return 0; }
1