S10

■S10
「1平方度あたり10等級の星がいくつあるか」という面輝度の単位.
どう求めるか困り者.
とりあえず,こんな感じかな?
1. 10等級が何カウントに対応するかを決める.I_{10} [count]
2. 1平方度あたりの surface brightness を測る.I_{sb}[count/deg^2]
3. I_{sb} / I_{10} = S10 [/deg^2]
という感じで良いな.次元もあっている.ふーん.

■crypt
#include<stdio.h>
#include<crypt.h>

int main( int argc, char* argv[] ) {
if(argc>2)
puts( crypt(argv[1], argv[2]) );
return 0;
}