Kamen_Mitev

Bank Account

Nov 22nd, 2012
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. using System;
  2.  
  3. class BankAccount
  4. {
  5. static void Main()
  6. {
  7. string firstName, middleName, lastName, holderName, bankName, IBAN, BIC;
  8. firstName = "Ivo";
  9. middleName = "Petkov";
  10. lastName = "Ivanov";
  11. holderName = firstName +" " + middleName +" " + lastName;
  12. bankName = "Penicredit Burcanbank";
  13. IBAN = "BG56 PNCR 3256 1642 7318";
  14. BIC = "BGUPNCRSF";
  15. decimal accountBalance = 6125.27m;
  16. ulong creditCardPisa, creditCardDrasterCard, creditKamExpress;
  17. creditCardPisa = 3253942566788291;
  18. creditCardDrasterCard = 1556298354689586;
  19. creditKamExpress = 2689134689577573;
  20. Console.WriteLine("Fullname: {0}\nBank name is {1}\nIBAN: {2}\nBIC: {3}\nBalance of account: {4}lv.\nFirst credit card: {5}\nSecond credit card: {6}\nThird credit card: {7}",holderName, bankName,IBAN, BIC, accountBalance, creditCardPisa, creditCardDrasterCard, creditKamExpress);
  21. }
  22. }
Add Comment
Please, Sign In to add comment