Michael Polinske
- Total activity 12
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 2
- Subscriptions 4
-
Michael Polinske created a post, AnsweredEduTools not compatible with IntelliJ IDEA 2020.1
I just updated to IntelliJ IDEA 2020.1 and I noticed that EduTools 3.5 is not compatible with it and so it got disabled. -
Michael Polinske commented, -
Michael Polinske created a post, AnsweredGet error java cannot find symbol when I use "var" keyword with language level set to JDK 11
If 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... -
-
Michael Polinske created a post, AnsweredCan I use scanf_s in CLion?
I 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... -
Michael Polinske created a post, AnsweredPython tutorial - String Multiplication
Working 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...