单项选择题

分析下面的一组语句,其中N为整型变量,这组语句执行的结果将输出字符串Good()个。
n:=0;
repeat writeln(‘Good’);
n:=n+2;
until n=5

A.0
B.3
C.5
D.无限