2012/01/28

[C++]Lottery Number Creator

實作C++亂數的使用
範例是用樂透彩,由電腦亂數取出每一組有6個數字(不重複)的序列並印出

#include <iostream>
#include <time.h>

using namespace std;

int main()
{
    int a,n;
    int Index = 0;
    int Box[6];
    bool Exist ;

    srand(time(NULL));

    cout << "Please input a number:";
    cin >> n;

    while(n > 0)
    {
        for(int i=0; i<6; i++)
        {
            a = rand()%49+1;
            Exist = false;

            for(int j=0; j<Index; j++)
            {
                if(Box[j] == a)
                {
                    Exist = true;
                    break;
                }
            }

            if(Exist == false)
            {
                Box[Index] = a;
                Index++;
            }

            else
            {
                i--;
            }
        }

        for(int i=0; i<6; i++)
        {
            if(Box[i] < 10)
            {
                cout << 0 << Box[i] << " ";
            }
            else
            {
                cout << Box[i] << " ";
            }
        }

        cout << endl;
        n--;
        Index = 0;
    }

    system("PAUSE");
    return 0;
}

2012/01/19

Blogger Dynamic Views

把網誌的樣式換成Blogger Dynamic Views
(其實是在http://btemplates.com/找到的樣式套上來都有點問題)
有別以往靜態顯示
從左上角的下拉式選單可以變換動態顯示的模式
整體看起來的效果滿簡潔的
小小的缺點是目前還沒有辦法加上像以前側欄的小工具、連結...等