Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|
7689 | 赖梓乐 | 13求n个数的最小值 | C++ | Wrong Answer | 0 MS | 264 KB | 470 | 2025-05-14 22:33:25 |
#include<iostream> // cin\cout\endl #include<cstdio> //scanf()\printf() #include<cstring> // strcpy()\strcat()\strcmp()\strlen()\memset() #include<cmath> //sqrt()\pow()\abs()\ceil()\floor()\max()\min() using namespace std; int main(){ int n,k,a; cin>>n; for(int i=1;i<=n;i++){ cin>>k; if(i==1){ a=i; } else{ if(a>k){ a=k; } } } cout<<a; return 0; }
------Input------
18 52 55 68 17 13 20 92 54 42 58 26 84 41 16 14 61 47 91
------Answer-----
13
------Your output-----
1