• LF몰 이벤트
  • 캠퍼스북
  • 파일시티 이벤트
  • 서울좀비 이벤트
  • 탑툰 이벤트
  • 닥터피엘 이벤트
  • 아이템베이 이벤트
  • 아이템매니아 이벤트
  • 통합검색(10)
  • 리포트(10)

"int square[Max_size]" 검색결과 1-10 / 10건

  • 한글파일 매틀랩 명령문 정리
    who(s) ?size(A) ?transpose(A) ?inv(A) ?diag(A) ?sqrt(A) ?prod(A) ?disp('메세지') ?plot3 ?format bank ? ... MATLAB 수치해석 및 수학계산 함 수 의 미 선형 대수 의 미 diff int limit taylor jacobian symsum 미분 적분 극한값 Taylor급수 Jacobian ... (오른쪽) 5각별모양 6선형 실선 점선 일점 쇄선 단선 다이아몬드 axis 명렁어 의 미 기타 서식 의 미 axis axis auto axis equal axis off axis square
    리포트 | 5페이지 | 1,000원 | 등록일 2015.12.13
  • 파일확장자 매직스퀘어 마방진 짝수 홀수 한꺼번에 구현
    { /* 정방형을반복적으로생성*/ int static square[MAX_SIZE][MAX_SIZE]; int i, j, row, column, t; /* indexes */ int ... count=0; /* counter */ int size; /* square size */ printf("Enter the size of the square: "); scanf(" ... #include #include #define MAX_SIZE 15 /*maximum size of square */ void main(void)
    리포트 | 1,000원 | 등록일 2010.05.06
  • 파일확장자 MagicSquare
    square[MAX_SIZE][MAX_SIZE]; int i, j, row, column; // 지수 int count; // 계수. ... 즉, 정방형 안에 들어갈 숫자 int size; // 정방형의 크기 printf("Enter the size of the square(only odd): "); scanf("%d", ... # include # include # define MAX_SIZE 999 // 정방형의 최대 크기 void main(void){ // 정방형을 반복적으로 생성 static int
    리포트 | 1,000원 | 등록일 2010.01.06
  • 한글파일 자료구조 개념을 이용한 마방진(매직스퀘어)구현
    Array[row][column]=key++;//시작위치에 key=1값을 할당한 후, key++ int max=Size*Size;//max값은 size의 제곱. while(key ... Size; //배열의 사이즈를 저장할 변수. int** Array; //동적할당으로 생성할 정수형 2차원포인터 }; magic_ square.cpp // magic_square.cpp ... using std::cout; using std::cin; using std::endl; #include "magic_square.h" int main() {
    리포트 | 6페이지 | 1,500원 | 등록일 2010.09.20
  • 파일확장자 체스(chess) 프로그램 (c) - 체스피스와 이동경로를 표시하는 프로그램
    piece, char row, char column) { int i, j; for (i=0; i ... used to draw the row line for a square chess board. ... …………………………. 28 ⒡ Conclusion …………………………. 30 ⒜ Introduction (Problem Definition) constants To draw a square
    리포트 | 30페이지 | 5,000원 | 등록일 2008.10.14
  • 한글파일 [알고리즘]알고리즘 총정리 슈퍼서브
    binary tree) 이진 트리의 표현 배열 표현법 리스트 표현법 성질 max # of nodes of level i = 2i-1 max # of nodes in a binary ... 선택 정렬 (selection sort) void selection(Items L[], int n) { int i, j, min; for (i = 1; i ... M : 소수 20보다 작은 소수를 약수로 가지지 않는 수 중간 제곱 함수 (mid-square) 접지 함수 (folding) 기수 변환 함수 (radix changing) .
    리포트 | 72페이지 | 2,000원 | 등록일 2008.09.02
  • 한글파일 자료구조 마방진 프로그램소스
    15 //정방형의 최대 크기 void main(void) //정방형을 반복적으로 생성 { static int square [MAX_SIZE][MAX_SIZE]; int i,j,row ... ,column; //지수 int count; //계수 int size; //정방형의 크기 int count_size=0; //시간의 복잡도를 표시하기 위한 변수 // 명령문을 수행할때마다 ... (size < 1 || size>MAX_SIZE+1){ count_size++; fprintf(stderr,"Error!
    리포트 | 4페이지 | 1,000원 | 등록일 2004.10.10
  • 파일확장자 [소프트] 마방진
    #include#include#define MAX_SIZE 15void main(void){static int square[MAX_SIZE][ MAX_SIZE ... 중앙에 1을 넣는다.square[0][(size-1)/2]=1;i=0;j=(size-1)/2; //j=2// 알고리즘 ... ];int i,j,row,column;int count;int size;printf("사각의 크기를 입력하세요!
    리포트 | 1페이지 | 1,000원 | 등록일 2004.05.22 | 수정일 2020.01.29
  • 한글파일 [자료구조] 마방진 (Magic Square)
    static int square[MAX_SIZE][MAX_SIZE]; int i, j, row, column; int count; int work_count=0; /* 수행횟수를 ... size of the square : "); scanf("%d", &size); /* 정방형의 크기를 입력받는다 */ work_count++; if (size < 1 || size ... 카운트 하기위한 변수 */ int size; double start=0, stop=0; double duration; /* 수행시간 계산을위한 변수 */ printf("Enter the
    리포트 | 5페이지 | 1,000원 | 등록일 2001.09.30
  • 한글파일 마방진
    #include #include #define max 15 void main(void) { static int square[max][max]; int i, j, row, col; int ... count; int size; printf("num = "); scanf("%d", &size); if(sizemax+1) { fprintf(stderr,"error! ... size is out of range\n"); exit(1); } if(!(size % 2)) { fprintf(stderr," error!
    리포트 | 2페이지 | 1,000원 | 등록일 2000.11.22
  • 레이어 팝업
  • 레이어 팝업
  • 레이어 팝업