Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #define _CRT_SECURE_NO_WARNINGS 0
- #include<stdio.h>
- #include <Windows.h>
- int main()
- {
- int ia, ib; //biến a, b lưu 2 số nguyên
- printf("Nhap so thu nhat: ");
- scanf ("%d",&ia); //cho người dùng nhập số thứ nhất
- printf("Nhap so thu hai: ");
- scanf ("%d",&ib); //nhập só thứ 2
- if ( ia > ib ) //nếu ia > ib
- printf("So lon Nhat la %d\n\n",ia); //thì ia là số lớn nhất
- else
- printf("So lon nhat la %d\n\n",ib);//và ngược lại
- system("pause"); //lệnh dừng màn hình của windows.
- return 0; //trả về main. chương trình kết thúc
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement