Advertisement
Guest User

untitled

a guest
Feb 17th, 2020
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. #include<stdio.h>
  2. #include<conio.h>
  3. int main ( )
  4. {
  5. int A,B,C,Avg;
  6. scanf("%d%d%d",&A,&B,&C);
  7. Avg=(A+B+C)/3;
  8. printf("%d",Avg);
  9. getch( );
  10. return 0;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement