概述脸相目标编程设计的三大特点

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
int main()
{
vector<int> v(3);
for (int &n : v)
答cin >> n;
sort(v.begin(), v.end());
for (int &n : v)
cout << n << ends;
return 0;
}

①祖父笔记①文章内容不可自主转截,违反者必追责!


随机文章:

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注