• 통합검색
  • 대학레포트
  • 논문
  • 기업신용보고서
  • 취업자료
  • 파워포인트배경
  • 서식

전문지식 20건

Lotto {     public static BufferedReader br = new BufferedReader(new InputStreamReader(System.in));     public static ArrayList<Integer> winBall = new ArrayList<Integer>();     public static ArrayList<Integer> userBall = new ArrayList<Integer>();       
  • 페이지 7페이지
  • 가격 1,300원
  • 등록일 2014.11.04
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
LottoAnalysis::LottoAnalysis() { /*번호분석을 위해 이전 당첨번호를 저장하고 빈도수를 계산*/ char buff[2]; char ch; int i = 0; for(; i < 5; i++) numRange[i] = 0; for(i = 0; i < MaxNum; i++){ rangeSorting[i].count = wholeSorting[i].count = 0; // 카운터 초기화 rangeSo
  • 페이지 5페이지
  • 가격 1,500원
  • 등록일 2007.08.03
  • 파일종류 압축파일
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
import java.lang.*; import java.io.*; public class Lotto{ public static void main(String[] args) throws Exception{ BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); int[] Lotto = new int[6]; int[] Lottod = new int[6]; int k =0; for (int a = 0;a<Lott
  • 페이지 1페이지
  • 가격 1,000원
  • 등록일 2007.02.15
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include <stdio.h> #include <stdlib.h> #include <time.h> main() { int i, j, input[6], num[7]; //사용할 변수 지정 int hit=0, bonus, dungsu, bonusdu=0; //변수 지정 srand((unsigned)time(NULL)); // 난수 함 수 rand(); for(i=0; i<7; i++) { num[i] = rand()%45+1;
  • 페이지 3페이지
  • 가격 1,000원
  • 등록일 2004.08.18
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
#include<stdio.h> #include<stdlib.h> #include<time.h> int Menu(); void UserSelect(int *pUserSelect); void ComputerSelect(int *pComputerSelect); void SortData(int *pSortData); void UserMoney(int *pMoney); void Select(int *pUser,int *pComputer,int *pMony); void main() {
  • 페이지 1페이지
  • 가격 200원
  • 등록일 2012.03.25
  • 파일종류 기타
  • 참고문헌 없음
  • 최근 2주 판매 이력 없음
top