Dragonliuoumai
 1 #include<iostream>
 2 using namespace std;
 3 int main()
 4 {
 5   int a,b,c;
 6   int f(int x,int y,int z);
 7   cin>>a>>b>>c;
 8   c=f(a,b,c);
 9   cout<<c<<endl;
10   return 0;
11 }
12 int f(int x,int y,int z)
13 {
14   int m;
15   if(x<y) m=x;
16    else m=y;
17   if (z<m) m=z;
18   return(m);
19 }

 

分类:

技术点:

相关文章:

  • 2022-01-02
  • 2021-12-15
  • 2022-12-23
  • 2022-01-26
  • 2022-02-13
  • 2022-12-23
  • 2022-12-23
  • 2021-12-17
猜你喜欢
  • 2021-10-20
  • 2022-02-26
  • 2021-12-25
  • 2022-02-02
  • 2022-12-23
  • 2022-12-23
  • 2021-07-09
相关资源
相似解决方案