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.6% | 1269 |
0.Thuế | 1p | 40.5% | 570 |
0.Tọa độ của một điểm | 1p | 43.3% | 973 |
0.Điểm trung bình | 1p | 46.3% | 879 |
Lẻ, chẵn hoặc gian lận | 1p | 42.0% | 198 |
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; }