answer Pascal (deg)

program answer; var base: real := 2; deg: real := 3; _result: real := 0; begin _result := Power(base, deg); writeln('Основание степени:', base); writeln('Показатель степени: ', deg); writeln('Результат: ', _result); end.

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.