Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions g1/Class 2/CSBasics/Arithmetic/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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} ");
Expand Down
8 changes: 8 additions & 0 deletions g6/SEDC_Class6/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down