Guest User

Untitled

a guest
May 4th, 2018
145
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. using System;
  2. using ConsoleApplication1.Classes;
  3. namespace ConsoleApplication1 {
  4. public class Hello {
  5. static void Main() {
  6. BankAccount account = new BankAccount();
  7. Console.WriteLine("Welcome to the bank of K-Shadow.");
  8. Console.WriteLine("What is your name?");
  9. account.Name = Console.ReadLine();
  10. Console.WriteLine("What is the desired password you want for your account?");
  11. account.Pass = Console.ReadLine();
  12. Console.WriteLine("In K-Shadow's bank, you start with 10 dollars, make your choices wisely.");
  13. account.Money = 10;
  14. Console.WriteLine("Account details:\nUsername: " + account.Name + "\nPassword: " + account.Pass + "\nBalance: " + account.Money + "");
  15. Console.WriteLine("Would you like to deposit money? [1] = Y, [0] = N");
  16. string input = Console.ReadLine();
  17. if (input != "0")
  18. {
  19. Console.WriteLine("How much money to deposit?");
  20. }
  21. else
  22. {
  23. Console.WriteLine("Get out then!");
  24. }
  25. Console.ReadKey();
  26. }
  27. }
  28. }
Add Comment
Please, Sign In to add comment