Advertisement
Guest User

Untitled

a guest
Nov 22nd, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.56 KB | None | 0 0
  1.  static void insättning()
  2.         {
  3.             int deposit;
  4.        
  5.             Console.WriteLine("Hur mycket pengar vill du sätta in: ");
  6.             deposit = balance + deposit;
  7.            
  8.  
  9.         }
  10.         static void uttagning()
  11.         {
  12.             int withdraw;
  13.             Console.WriteLine("Hur mycket pengar vill du ta ut: ");
  14.             withdraw = balance - withdraw;
  15.  
  16.         }
  17.         static void kontosaldo()
  18.         {
  19.             int balance;
  20.             Console.WriteLine("Ditt konto saldo är: " + saldo);
  21.            
  22.  
  23.  
  24.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement