fork download
  1. #include <bits/stdc++.h>
  2. using namespace std;
  3. //Comprando agua
  4. int main() {
  5. int n, c, preMin=INT_MAX;
  6. cin >> n;
  7. do {
  8. cin >> c;
  9. if(c<preMin) preMin=c;
  10. n--;
  11. } while(n>0);
  12. cout << preMin;
  13. return 0;
  14. }
Success #stdin #stdout 0.01s 5272KB
stdin
5
9 10 8 7 11
stdout
7