Guest User

Untitled

a guest
Jan 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. #include<stdio.h>
  2.  
  3. int main(voic){
  4.  
  5. int age;
  6. int salary;
  7. float battingAverage;
  8.  
  9. age=21;
  10. salary= 5000000;
  11. battingAverage= .341;
  12.  
  13. printf("I am %d years old.", age);
  14. printf("\nI earn %d per year.", salary);
  15. printf("\nMy batting average is %f", battingAverage);
  16.  
  17. getchar();
  18. return 0;
  19.  
  20. }
Add Comment
Please, Sign In to add comment