首页 > 代码库 > 用shell写个100以内的所有数字之和

用shell写个100以内的所有数字之和

#!/bin/bashi=2while ((i<=100));do    j=2    while ((j<=i/2));do       if ((i%j==0));then           break       fi       let j++    done    if ((j>i/2));then        echo $i    fi     let i++done

  

用shell写个100以内的所有数字之和