Bài thực hành KTLT số 2 Khoa Điện (lớp N34)


Problems

Problem Points AC Rate Users
0.Số lớn nhất 1p 47.1% 1217
0.Thuế 1p 40.3% 525
0.Tọa độ của một điểm 1p 42.5% 928
0.Điểm trung bình 1p 45.9% 850
Lẻ, chẵn hoặc gian lận 1p 41.9% 194

Comments


  • 0
    Giáp_Mạnh_Hùng  commented on Sept. 13, 2021, 1:33 p.m.

    include<stdio.h>

    include<math.h>

    int main() { int a,b,c; scanf("%d%d%d",&a,&b,&c); int m, max; m = (a>b)?a:b; max = (m>c)?m:c; printf("Max = %d",max); return 0; }