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.8% | 1284 |
0.Thuế | 1p | 40.4% | 579 |
0.Tọa độ của một điểm | 1p | 43.1% | 989 |
0.Điểm trung bình | 1p | 46.5% | 891 |
Lẻ, chẵn hoặc gian lận | 1p | 42.1% | 200 |
Comments
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; }