Skip to content
Snippets Groups Projects
Commit b399fc79 authored by Jonne Itkonen's avatar Jonne Itkonen
Browse files

Int16.Parse -> int.Parse

Ajan kuluessa on unohtunut, miksi Int16, joten laitetaanpa int, koska toimii.
parent 592af2b6
No related branches found
No related tags found
No related merge requests found
......@@ -62,7 +62,7 @@ public class MainClass {
return;
}
int lkm = Int16.Parse(args[0]);
int lkm = int.Parse(args[0]);
lkm = lkm - 2; // Lukumäärästä pois ekat ykköset
if (lkm < 0) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment