ZZU的大白鹅


私信TA

用户名:dotcpp0703016

访问量:349

签 名:

等  级
排  名 29360
经  验 520
参赛次数 0
文章发表 4
年  龄 0
在职情况 学生
学  校 郑州大学
专  业

  自我简介:

解题思路:不认识algorithm头文件函数的可以看这篇文章:https://blog.csdn.net/weixin_43899069/article/details/104450000


注意事项:

参考代码:

#include<iostream>
#include<algorithm>
using namespace std;


int main()

{
    int a[10];
    for (int i = 0; i < 3; i++)
    {
        cin >> a[i];
    }
    sort(a, a + 3);

    for (int j = 0; j < 3; j++)
        cout << a[j] << endl;




}

 

0.0分

1 人评分

  评论区

  • «
  • »