ソースは、以下の通りです。
var value = Math.random() * 500; document.write("あなたの今日の運勢は、"); if (value > 480) document.write("大大吉"); if (value > 450 && value <=480) document.write("大吉"); if (value > 350 && value <=450) document.write("吉"); if (value > 250 && value <=350) document.write("中吉"); if (value > 150 && value <=250) document.write("小吉"); if (value > 100 && value <=150) document.write("すえ吉"); if (value > 50 && value <=100) document.write("小凶"); if (value > 20 && value <=50) document.write("凶"); if (value <=20) document.write("大凶"); document.write("です。");