Advertisement
thienlang

Cơ bản C

Oct 15th, 2013
305
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.61 KB | None | 0 0
  1. #define _CRT_SECURE_NO_WARNINGS 0
  2. #include<stdio.h>
  3. #include <Windows.h>
  4.  
  5. int main()
  6. {
  7.     int ia, ib; //biến a, b lưu 2 số nguyên
  8.     printf("Nhap so thu nhat: ");
  9.     scanf ("%d",&ia);               //cho người dùng nhập số thứ nhất
  10.     printf("Nhap so thu hai: ");
  11.     scanf ("%d",&ib); //nhập só thứ 2
  12.  
  13.     if ( ia > ib ) //nếu ia > ib
  14.         printf("So lon Nhat la %d\n\n",ia); //thì ia là số lớn nhất
  15.     else
  16.         printf("So lon nhat la %d\n\n",ib);//và ngược lại
  17.  
  18.     system("pause"); //lệnh dừng màn hình của windows.
  19.  
  20.     return 0; //trả về main. chương trình kết thúc
  21.  
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement