AI智能
改变未来

PowerShell:计算三位整数(100~999)的水仙花数

计算三位整数(100~999)的水仙花数

[int]$a = 100

for($a = 100;$a -le 999;$a++){

     [string]$y = $a

     [string]$b = $y.Substring(0,1)

     [string]$c = $y.Substring(1,1)

     [string]$d = $y.Substring(2,1)

    [int]$e = $b*$b*$b + ($c*$c*$c + $d*$d*$d)

     if($a -eq $e){

     write-output(“{0}是一个水仙花” -f $e)

}else{

       continue

}

赞(0) 打赏
未经允许不得转载:爱站程序员基地 » PowerShell:计算三位整数(100~999)的水仙花数