UdemyTimBurchalka icon indicating copy to clipboard operation
UdemyTimBurchalka copied to clipboard

Fix the code to make it works on udemy

Open IzekChen opened this issue 2 years ago • 0 comments

for using the syntax as below, it is not working on udemy int a = (int) one * 1000; int b = (int) two * 1000;

Need to change it ot int a = (int) (one * 1000); int b = (int) (two * 1000);

IzekChen avatar Nov 27 '21 07:11 IzekChen