0
Help C#
Can someone tell what is wrong with this code and explain it to me? static void Main(string[] args) { int checkingAccount = 5; int savingAccount = ++checkingAccount; //fix the code Console.WriteLine(checkingAccount); Console.WriteLine(savingAccount);
3 Answers
+ 2
You are missing a closing curly brace
0
First tell me what do you want to do in this code so We can help you..
Thanks
Andrius SavÄiukas See below Code đđ
https://code.sololearn.com/cAMgCbhPvap2/?ref=app
0
Its with the prefixes. The answer should be cA=4, sA=13
I managed to fix it, but without knowing how Iâm doing it. But the sA should be 12 in the top