diff --git a/g1/Class 2/CSBasics/Arithmetic/Program.cs b/g1/Class 2/CSBasics/Arithmetic/Program.cs index 6aae829..7c2c195 100644 --- a/g1/Class 2/CSBasics/Arithmetic/Program.cs +++ b/g1/Class 2/CSBasics/Arithmetic/Program.cs @@ -13,8 +13,9 @@ Demonstracija na aritmetickite operatori. */ static void Main(string[] args) { - int a, b; - a = 20; b = 10; + int a; + string b; + a = 20; b = "emi"; Console.WriteLine("a = {0}, b = {1} ", a, b); //Console.WriteLine($"a = {a}, b = {b} "); diff --git a/g6/SEDC_Class6/README.md b/g6/SEDC_Class6/README.md index 51c0f6a..ce2474d 100644 --- a/g6/SEDC_Class6/README.md +++ b/g6/SEDC_Class6/README.md @@ -50,6 +50,14 @@ If not found, it should print an error message **56 Username4** +**Bonus** + +The User should be asked to choose between Y/N options. + +If he chooses Y the aplication should run again, and + +If he chooses N the aplication should stop + ## Exercise 03 Create an ATM application. A customer should be able to authenticate with card number and pin and should be greeted with a message greeting them by full name. After that they can choose one of the following: 1) Balance checking - This should print out the current balance of money on their account