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?

シェルスクリプトで素数を判定する

Posted at

全然実務では使わないのですが、bashには factor というコマンドがあり素因数分解をすることができます。

~$ factor 8
8: 2 2 2

素数を指定すると

~$ factor 7
7: 7

このように 入力した値: 素因数分解した結果を半角スペース区切りしたもの で出力されるため

### sosuu.sh
#!/bin/bash

INPUT=$1

factor $INPUT | awk '{if(NF==2)print $2"は素数です"}'

このように判定するスクリプトが簡単に書けます。

実行例

$ ./sosuu.sh 7
7は素数です
$ ./sosuu.sh 10
$
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?