0
Привет пожалуйста Объясните этот код
while(number>0){ fact*=number--; } System.out.println(fact);
2 Antworten
+ 3
while <number> is greater than zero
begin
multiply <fact> by <number>
then decrease <number> by 1
end
print <fact> on screen/console
0
Thanks a lot for your help