Anybody know Java?
while (variableX > 4 && variableX < 6) {
stuff u want to happen goes between these squiggly brackets
}
i think that's how it works.. sorry if it doesn't.. i am a failed cs major that hasn't programmed in over 2 years
stuff u want to happen goes between these squiggly brackets
}
i think that's how it works.. sorry if it doesn't.. i am a failed cs major that hasn't programmed in over 2 years
Man I took programing from java, visual basics to c++ in HS. And to tell you the truth, to this date I dont know s***. All that true = this and False = that just flew by my head.
Programing is so f***ing hard !!!!!
Programing is so f***ing hard !!!!!
i only studied c++, but i think its the same concept, with different syntax:
take a for loop for example..
take a for loop for example..
Code:
for (initalization ; condition ; increment) {
if (input > minimumvalue && input < maximumvalue){
...insert action here......
}
}



h: