首页
Python
Java
IOS
Andorid
NodeJS
JavaScript
HTML5
【
Codeforces_851
】的更多相关文章
Codeforces_851
A.分三种情况. #include<bits/stdc++.h> using namespace std; int n,k,t; int main() { ios::sync_with_stdio(); cin >> n >> k >> t; if(t <= k) cout << t << endl; else if(t <= n) cout << k << endl; else cout <…