0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

TeXで素数判定

Posted at

タイトル通りです.

\usepackage[ドライバ]{xcolor}

% =============================================

\makeatletter
\def\Prime#1{\bgroup\def\numcolor{\textcolor{red}}%
  \@tempcnta#1\@tempcntb\tw@%
  \ifnum\@tempcnta=1
    \let\numcolor\relax%
  \else
    \@whilenum\@tempcntb<\@tempcnta\do{%
      \divide\@tempcnta\@tempcntb\multiply\@tempcnta\@tempcntb\relax
      \ifnum\@tempcnta=#1\let\numcolor\relax\fi
      \@tempcnta#1\advance\@tempcntb\@ne\relax
    }
  \fi\numcolor{#1}\egroup}
\makeatother

\Prime{5}
\Prime{334}

結果

5 334

自分もまだ勉強段階です.

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?