Min 4 số

View as PDF




Author:
Problem types
Points: 100 (p) Time limit: 1.0s Memory limit: 256M Input: stdin Output: stdout

Viết chương trình nhập vào bốn số nguyên \(a, b, c, d\). In ra số nhỏ nhất của 4 số đó.

Input

  • Bốn số nguyên \(a, b, c, d\) mỗi số trên 1 dòng.

Output

  • Một số nguyên là giá trị nhỏ nhất của 4 số.

Example

Test 1

Input
2 
6 
3 
9 
Output
2 

Test 2

Input
-243 
-543 
-123 
232 
Output
-543

Comments


  • 0
    nguyenthienan310314    6:18 p.m. 12 aug, 2024

    a = int(input())
    b = int(input())
    c = int(input())
    d = int(input())
    print(min(a,b,c,d))


    • 1
      giathinhd061    10:46 a.m. 15 jul, 2024

      a = int(input())
      b = int(input())
      c = int(input())
      d = int(input())
      print(min(a,b,c,d))


      • 1
        thuannguyen1972dn    6:27 p.m. 18 jun, 2024

        1 dong:print(min(int(input()),int(input()),int(input()),int(input())))


        • 2
          Avocadorable    7:26 p.m. 20 may, 2024
          a = int(input())
          b = int(input())
          c = int(input())
          d = int(input())
          
          print(min(a, b, c, d))
          

          • 1
            pa_ldk    9:01 a.m. 12 may, 2024

            include <bits/stdc++.h>

            using namespace std;
            int main ()
            {
            long long a,b,c,d;
            cin >>a >>b >>c >>d;
            cout <<min(min(a,b),min(c,d));
            return 0;
            }


            • -1
              Thắng2711_    7:46 p.m. 8 jul, 2023 edited

              cô ơi em làm mà nó ko ra kết quả cô (test4,5)
              a=int(input())
              b=int(input())
              c=int(input())
              d=int(input())
              if a<b and a<c and a<d:
              print(a)
              elif b<a and b<c and b<d:
              print(b)
              elif c<a and c<b and c<d:
              print(c)
              elif d<a and d<b and d<c:
              print(d)

              1 reply

              • 0
                duyanhloveav    9:33 p.m. 11 aug, 2021

                Code tham khảo

                C++


                • 2
                  SPyofgame    2:38 a.m. 19 jun, 2020

                  Spoiler Alert


                  Hint 1

                  • \(min(a, b, c, d) = min(min(a, b), min(c, d))\)

                  • \(min(a, b, c) = min(min(a, b), c) = min(min(b, c), a) = min(min(c, a), b)\)

                  • \(min(a, b) = a\) khi \(a \leq b\)

                  • \(min(a, b) = b\) khi \(a \geq b\)

                  1 reply

                  • 0
                    SPyofgame    3:47 p.m. 3 jun, 2020

                    Becareful: Giới hạn của số có thể lớn ;)

                    1 reply