Pound Sterling (GBP) and Pence Sterling (GBX) Currency Exchange Rate Conversion Calculator using C# Console Application.
Pence sterling (GBX) is a subdivision of Pounds sterling (GBP). Pounds are official currency of the United Kingdom.
1 Pound Sterling (GBP) =100 Pence Sterling (GBX)
Source Code:
1 2 3 4 5 6 7 8 9 10 |
static void Main(string[] args) { Console.Write("Please input your pounds : "); int pound = int.Parse(Console.ReadLine()); int pence=pound*100; Console.WriteLine("{0} Pound Sterling (GBP) = {1} Pence Sterling (GBX)", pound, pence); Console.ReadLine(); } |
Output: