|
Problem: Distance Formula (distance.c)
To test their idea, the Math Academy would first like a short program that computes the distance between two points on a Cartesian Plane. The students are expected to work their problems on paper and then compare their answers to the answers generated by your
|
- 페이지 3페이지
- 가격 1,300원
- 등록일 2012.07.23
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c=1;
fscanf(file, "%d", &Num_case);
while(Num_case--)
{
while(1)
{
fscanf(file, "%d %d %d %c", &Team, &PB, &Time, &Type);
fgetc(file);
c = fgetc(file);
switch(Type)
{
case 'I': // t
|
- 페이지 71페이지
- 가격 7,000원
- 등록일 2010.02.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
//Function Prototypes
void initialize(char board[SIZE][SIZE]);
void print_board(char board[SIZE][SIZE]);
int is_winner(char board[SIZE][SIZE]);
int is_full(char board[SIZE][SIZE]);
int check_move(char board[SIZE][SIZE], int x, int y);
//Main Function
int main() {
//Declare necessary
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2012.07.29
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include "stdafx.h"
#include <conio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
struct ranking
{
int rank;
char name[10];
int point;
int win_percent;
};
void status_view(int x,int y)// x는 현재 사용자가 낸 것,
y는 컴퓨터
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2007.01.05
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
1. Introduction
Linked list, random number generation, sorting 기법을 사용하여, 숫자를 정렬한다. 행렬 사이즈 N 를 입력받아서NxN 행렬을 만드는데, 각각의 행, 열의 숫자는 오름차순으로 되도록 sorting을 한다.
2. Implementation algorithm
1). 행렬 사이즈 N을
|
- 페이지 2페이지
- 가격 1,800원
- 등록일 2012.08.31
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|