单项选择题

下面代码的执行结果是( )。
public class test
public static void main (String args[])
float m=5.0f;
int n=4;
System.out.println((++m)*(n--));

A.20.0
B.20
C.24.0
D.24