Ahnaf123

AMOUNT OF BANANA!!!!!!

Dec 13th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4.  
  5. int banana_cost,number_of_banana,product;
  6.  
  7. scanf("%d %d",&banana_cost,&number_of_banana);
  8.  
  9. product=banana_cost*number_of_banana;
  10.  
  11. printf("product of the amount of banana is %d\n",product);
  12.  
  13. return 0;
  14. }
Advertisement
Add Comment
Please, Sign In to add comment