0.Số lớn nhất


Submit solution

Points: 1 (partial)
Time limit: 1.0s
Memory limit: 98M

Author:
Problem type
Allowed languages
Ada, Assembly, Awk, C, C++, C11, CLANG, CLANGX, Classical, COBOL, Coffee, CSC, D lang, DART, F95, FORTH, Fortrn, GAS32, GO, Haskell, Itercal, Java, kotlin, LEAN, LISP, LUA, MONOVB, Nasm, OCAML, Pascal, Perl, php, PIKE, prolog, Pypy, Python, Ruby 2, RUST, Scala, SCM, SED, SWIFT, TCL, TUR, V8JS, VB, ZIG

Thực hiện một chương trình đọc 3 giá trị số nguyên và xuất hiện số lớn nhất theo sau thông điệp "Max = ".

Gợi ý: Bạn có thểm tham khảo sử dụng công thức sau:

\[max(a,b) = \frac{a + b + |a-b|}{2}\]

\[max(a,b) = a>b?a:b\]

Đầu vào

Tệp đầu vào chứa 3 giá trị số nguyên.

Đầu ra

In lớn nhất của ba giá trị theo sau bởi một dấu cách và thông báo "Max = ".

VÍ DỤ 1

INPUT 1

7 14 106

OUTPUT 1

Max = 106

VÍ DỤ 2

INPUT 2

217 14 6

OUTPUT 2

Max = 217


Comments


  • 0
    MinhDuc_CNTT1_K64  commented on Oct. 12, 2023, 11:56 a.m.

    print("Max =", max(map(int, input().split())))


  • 0
    HungLH_212510983  commented on Oct. 8, 2022, 2:04 a.m.

    a,b,c=map(int,input().split()) if (a>b and a>c): print('Max = ',a) elif (b>a and b>c): print('Max = ',b) else: print('Max = ',c)


  • -1
    tnc2604  commented on Sept. 14, 2020, 12:57 p.m.

    include<stdio.h>

    include<math.h>

    // fb: cuongngoctran int main() { int a,b,c ; scanf("%d%d%d",&a,&b,&c); if (a<b && b<c) printf ("Max = %d ",c); else if(b<a&& c<a) printf ("Max = %d",a); else printf("Max = %d",b);

    }


  • 1
    TICHPX  commented on June 18, 2020, 1:55 a.m.

    Code tham khảo C++11

    #include<bits/stdc++.h>
    using namespace std;
    int main()
    {
        int a,b,c;
        cin>>a>>b>>c;
        cout<<"Max = "<<max({a,b,c});
    }

    • 0
      ga123  commented on Sept. 15, 2021, 6:29 a.m.

      code built in này nhanh nhưng mà truy xuất thư viện lại thành bị lâu o.o


  • 1
    Trungcuongk59utc  commented on Dec. 23, 2018, 3:37 a.m.

    include <stdio.h>

    include <math.h>

    int main () { int a,b,c,max; scanf ("%d%d%d",&a,&b,&c); max = a; if (b>a?a:b,max=b); if (c>b?b:c,max=c); printf("gia tri lon nhat max = %d",max ); return 0; }