Advertisement
Anik_Akash

uri 2757

Nov 18th, 2020
571
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.32 KB | None | 0 0
  1. #include<stdio.h>
  2. int main()
  3.  
  4. {
  5.     int A,B,C;
  6.  
  7.  
  8.     scanf("%d%d%d",&A,&B,&C);
  9.  
  10.     printf("A = %d,\ B = %d,\ C = %d\n",A,B,C);
  11.     printf("A = %10d,\ B = %10d,\ C = %10d\n",A,B,C);
  12.     printf("A = %010d,\ B = %010d,\ C = %010d\n",A,B,C);
  13.     printf("A = %-10d,\ B = %-10d,\ C = %-10d\n",A,B,C);
  14.  
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement