Interested in programming?

Hi all fairly new to programming just been using MatLab with uni course and would be well up for learning some more.
 
Bare in mind that I have the most basic of HTML knowledge, that's it. I have no exams ever again (:D) and will be available from 23rd May ish!
 
1 years worth of java behind my belt. Willing to do whatever I can to help/self-improve :)

System.out.println("Reporting in");
 
1 years worth of java behind my belt. Willing to do whatever I can to help/self-improve :)

System.out.println("Reporting in");

class apez{
private String in = "Reporting in";

public String ishein(String in){
if(in == "Reporting in"){
System.out,println(" oh yeah he's in!");
}else{
{
System.out,println("Fail");
}

}
 
I'm in...Got one more year left at Uni, i need to scratch up my Java and SQL and learn as much as i can this summer! I shall be ready after the 1st June...:)
 
Sorry mate - didn't mean to be pedantic - like your idea very much.

Yes - I'll be official debugger and code grammar pedant if you like!

Top man i wasn't being a pleb, that's great of you to help. We (and I think I speak for all of us) say thats great of you to offer to help mate:)

I'm busy (ish) atm, but happy to report in as well :)

We're all busy, in the thread over on topic we've had all sorts, it's not about timing, it's about being willing to help and having you on board is a big help fella :)

If we can get together like this then I think it's a massive plus for the forums and can help bring forward a lot of young developers - thanks again lads.
 
Parenthesis don't match.

He's stuck comma's in there too instead of full stops.

You should also use:

in.equals("Reporting in");

for the boolean equality.

Edit: You probably shouldn't have "in" as the input to the function if it is declared as a variable in the class, as the meaning becomes ambiguous, requiring the explicit use of "this.in" to use the "in" string in the function call.
 
Last edited:
Back
Top Bottom