Create a variable pounds to store a weight in pounds. Convert this to kilograms and assign the result to a variable kilos. The conversion factor is 1 kilogram = 2.2 lb
belongs to book: MATLAB: A Practical Introduction to Programming and Problem Solving|Stormy Attaway|Fourth Edition| Chapter number:1| Question number:8.1
All Answers
total answers (1)
pounds = 30;
kilos = pounds / 2.2
kilos =
13.6364
need an explanation for this answer? contact us directly to get an explanation for this answer