How many ounces in a pound (oz in lb)
How many ounces in a pound (oz in lb). 1 lb in ounces.
1 pound (lb) is equal to 16 ounces (oz):
1 lb = 16 oz
How to convert Pounds to Ounces
m(oz) = m(lb) × 16
Example
Convert 5 lb to ounces:
m(oz) = 5 lb × 16 = 80 oz
C# Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
class Program { static void Main(string[] args) { //Pounds to Ounces Console.WriteLine("C# Pounds to Ounces program\n"); Console.Write("Enter a number in Pounds: "); double Pounds = Convert.ToDouble(Console.ReadLine()); double Ounces = Pounds * 16; Console.WriteLine(Pounds + " Pounds is " + Ounces + " pounds"); Console.ReadLine(); } } |
Output: