作为 If 条件的过程

作为 If 条件的过程

我在一个程序中有一个 if 子句,其中有另一个程序作为条件,就像这样
If procedure(a, b) then

使用算法包可以实现吗?

答案1

像这样?

在此处输入图片描述

\documentclass{article}

\usepackage{algpseudocode}

\begin{document}

\begin{algorithmic}
    \If{procedure($a,b$)}
        \State do something
    \EndIf
\end{algorithmic}

\end{document} 

相关内容