?? proj6_05.cpp
字號:
#include <algorithm>
#include <vector>
#include <iostream.h>
using namespace std;
void main()
{
int ia[ 6 ] = { 27, 210, 12, 47, 109, 83 };
vector <int> vec( ia, ia+6 );
vector <int>::reverse_iterator r_iter;
for ( r_iter = vec.rbegin(); r_iter != vec.rend(); r_iter++)
{
cout << * r_iter << endl;
}
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -