로또
-
로또6/45 당첨번호 json 조회Programming 2020. 10. 18. 11:03
동행로또 사이트에서 제공하고 있는 json에는 당첨번호와 1등 정보만 있어,나머지 정보들도 포함된 json을 제공하는 사이트를 만들었습니다.1회부터 최근회까지 추첨결과를 json으로 제공합니다.(본 정보에는 오류가 있을 수 있으며, 동행복권 사이트에서 정확한 당첨번호를 확인하실 수 있습니다.)조회방법회차별 조회https://smok95.github.io/lotto/results/{회차번호}.json최근회차 조회https://smok95.github.io/lotto/results/latest.json전체회차 조회https://smok95.github.io/lotto/results/all.json형식{ "draw_no": 929, "numbers": [7, 9, 12, 15, 19, 23], "bonus_n..
-
-
로또번호 생성기Programming/C,C++,C# 2007. 11. 21. 12:57
#include #include #include void main() { int lotto[6]={0,}; // 6개의 로또번호가 들어갈 배열 int count = 0; // 생성한 로또번호의 갯수 srand(time(NULL)); // 랜덤값 추출 // 6개의 로또번호를 추출할때까지 반복 while(count < 6) { int mFlag = 1; int number = 0; int i=0; // 1 ~ 45 사이의 로또번호를 얻는다. number = rand()%45+1; // 중복되는 로또번호가 있는지 확인한다. for(i=0; i