xachetbay

Untitled

Mar 12th, 2019
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.30 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. int main(){
  4.     printf("Nhap a: ");int a;scanf("%d",&a);
  5.     printf("Nhap b: ");int b;scanf("%d",&b);
  6.    
  7.     printf("\nTong: %d \n",(a+b));
  8.     printf("Hieu: %d \n",(a-b));
  9.     printf("Tich: %d \n",(a*b));
  10.     printf("Thuong: %f \n",(float)a/b);
  11.     printf("So du: %d \n",(a%b));
  12.    
  13. }
Advertisement
Add Comment
Please, Sign In to add comment