Michael Polinske
- Total activity 12
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 4
-
Edited EduTools not compatible with IntelliJ IDEA 2020.1
AnsweredI just updated to IntelliJ IDEA 2020.1 and I noticed that EduTools 3.5 is not compatible with it and so it got disabled. -
Created Get error java cannot find symbol when I use "var" keyword with language level set to JDK 11
AnsweredIf I try compiling a Java 11 class using the var keyword I get a message saying: Error:(15, 13) java: cannot find symbolsymbol: class varlocation: class ImageViewer I am able to compile the class f... -
Created Can I use scanf_s in CLion?
AnsweredI am trying to learn the C programming language and some code that I found used scanf_s,but it doesn't compile with CLion. The code below compiles fine in VS2015, but doesn't link in CLion on OS X... -
Created Python tutorial - String Multiplication
AnsweredWorking through the Python tutorial in PyCharm and when I have the following code and check the task it says "use multiplication". hello = "hello"ten_of_hellos = hello * 10print(ten_of_hellos)The o...