hi all
this is my code
i got an error but unfortunately i can't see it:(
please help me....
public class QUSTION5
{
public static void main (String args[])
{
double n = 20;
int counter= 0;
for (int t =0; t<=25; t++)
{
n= (220/(1+10*Math.pow(0.83>,t)));
System.out.println("At t = " + t + " the value of N = " + n);
if (n<80)counter++;
}
System.out.println("supervision years = " + counter);
}
}