单项选择题

下面程序段的输出结果是( )。
public class Test
public static void main (String[] args)
int j=2,i=5;
while (j<i--) j++;
System.out.println(j);

A.2
B.3
C.4
D.5