Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
129279 田祥江 13求n个数的最小值 C++ Wrong Answer 1 MS 268 KB 201 2025-08-23 15:22:02

Tests(0/10):


Code:

#include<bits/stdc++.h> using namespace std; int main(){ int n=7,a,b,c,d,e,f,g,max=10000000; cin>>a>>b>>c>>d>>e>>f>>g; for(int i=1;i<=7;i++){ if(a<max){ max=a; } } cout<<max; }


Run Info:

------Input------
8 74 34 87 21 47 95 59 99
------Answer-----
21
------Your output-----
8