Not a statement

Ola, estou novamente pedindo uma ajuda de novato. No exercicio abaixo tenho um erro na linha indicada em negrito…alguem poderia me ajudar?O erro é ‘Not a statment’, illegal chatacter’…Li em algum lugar que tenho que tornar a expressao um comando do tipo: for this…do that…
obrigado[/code]

import java.io.*;
public class rot13input {
public static void main(String[] args) throws IOExceptition {
BufferedReader in = new BufferedReader( new InputStreamReader(System.in));
for(;:wink: {
System.out.print("> ");
String line = in.readLine();
if(( line == null) || line.equals(“quit”))
break;
StringBuffer buf = newStringBuffer(line);
for(int i = 0; i < buf.length(); i÷÷)
buf.setCharAt(i, rot13(buf.charAt(i)));

    System.out.println(buf);
}
}

}
[/b][b]

provavelmente vc deveria fazer i++ (i mais mais) e não i÷÷ (i dividido dividido)