Open main menu
Logic Wiki
Search
Changes
← Older edit
Newer edit →
Indução e Recursão Matemática
(view source)
Revision as of 22:35, 17 June 2016
10 bytes added
,
22:35, 17 June 2016
→Exercícios e Projetos
<math>
McCarthy := proc (n::integer) option remenber;
\\
if 100 < n then return n-10;
\\
else return McCarthy(McCarthy(n+11));
\\
end if;
\\
end proc;
\\
</math>
Marcielmanoel15
100
edits