Hi Im quite new to java and programming in general and I was hoping on getting some help with this piece of code.
class kwadratic {
public static void main(String []args){
for (double xxx=-1000; xxx<1000;xxx++){
double equation = xxx*xxx*3-8*xxx+4;
}
if (equation ==0){
System.out.println(xxx);
}
}
}
Im using Netbeans ...if it matters.:P:

