Skip to content

Instantly share code, notes, and snippets.

View minmint75's full-sized avatar

Mint minmint75

View GitHub Profile
@minmint75
minmint75 / BIT230263-PhamQuangMinh.c
Created April 24, 2026 04:13
BIT230263-PhamQuangMinh
// bai 1
#include<stdio.h>
int main() {
int a, b, c, max;
printf("Nhap 3 gia tri a, b, c: ");
scanf("%d %d %d", &a, &b, &c);
max = a;
if (b > max) {