⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 11-06-04.cpp

📁 more efftive 代码
💻 CPP
字号:
#include <iostream>#include <cstdlib>#include <list>#include <algorithm>using namespace std;int main(){  list<int> L;  generate_n(front_inserter(L), 1000, rand);    list<int>::const_iterator it = max_element(L.begin(), L.end());  cout << "The largest element is " << *it << endl;}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -