我这样也可以吧

发布时间:2019-09-24 07:53:15
贴主:陈郑浩
热度:2

陈郑浩 2019-09-24

using namespace std;

int main()

{

int x, y, z, t;

cin >> x >> y >> z;

if (x > y) {

t = x;

x = y;

y = t;

}

if (x > z) {

t = x;

x = z;

z = t;

}

if (y > z) {

t = y;

y = z;

z = t;

}

cout << x;

return 0;

}

(0)

菜鸡不想打代码只想吃牛排 2019-09-25

1)题目?

2)头文件声明?(#include<iostream>)

3)下面代码没太大问题(?

4)没过的话再回头仔细看题目要求输出什么&格式什么等等等(?

(0)

Copyright 2016 - 2024 XUJC ACM Team
闽ICP备2020022076号-1