Upload via code

This commit is contained in:
2024-10-03 19:17:29 +08:00
parent 543ccf0fe0
commit b64d31db74
39 changed files with 1548 additions and 0 deletions

21
Luogu/Luogu_P_5715.cpp Normal file
View File

@ -0,0 +1,21 @@
#include <bits/stdc++.h>
#define int long long
#define endl "\n"
using namespace std;
int arr[1005];
int n;
signed main()
{
for(int i = 1; i <= 3; i ++ )
{
cin >> arr[i];
}
sort(arr + 1, arr + 1 + 3);
for(int i = 1; i <= 3; i ++ )
{
cout << arr[i] << " ";
}
return 0;
}