0
오존 모차르트를 처음 접했으므로 삼각형 시퀀스를 쓰려고하는데 프로그래밍이 작동하지 않습니다.구문 오류, 예기치 않은 T_end, 예상 T_the
declare
fun {Sequence N R}
fun {Help I}
if I < N
sum = {Int.toFloat(N*(N+1)/2.0)}
%I + 1
case R of nil then {Append [sum] nil}
[] H|T then sum|H|T
end
I+1
end
end
in
{Help 0}
end
declare
{Browse {Sequence 5 nil}}
프로그래밍에 문제가 있다면? 다음과 같은 오류가 표시됩니다.
%*************************** parse error ************************
%**
%** syntax error, unexpected T_end, expecting T_then
%**
%** in file "c:/Users/admin/Desktop/test (2).oz", line 11, column 6
%** ------------------ rejected (1 error)
그 밖의 생각은 있으십니까? 감사합니다.