|
C. Chapra / 2002 / McGraw-Hill Korea
3. C++언어 입문
-Haruhiko Hayashi / 2001 / Youngjin.com
4. MATLAB 프로그래밍 언어
-박 진 수 / 2001 / 영한출판사
5. MATLAB 기초에서 응용까지
-김 종 성 외 1명 / 2000 / 다성출판사 1. 서론
2. 본론
1). 운동 방정식
|
- 페이지 23페이지
- 가격 4,000원
- 등록일 2007.02.15
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <string.h>
#define max 50000000 //주사위 굴리는 시간 지연 시키는 값
void start(void);
void delay(void);
int zero(void);
int one(void);
int two(void);
int six(void);
int seven(void);
int eight(void)
|
- 페이지 7페이지
- 가격 2,000원
- 등록일 2007.11.26
- 파일종류 기타
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
[ERROR : 10731] 오류 발생.
|
- 페이지 20페이지
- 가격 3,000원
- 등록일 2007.12.19
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
세로\n\n");
printf("사각형의 가로: %d\n", a);
printf("사각형의 세로: %d\n", b);
printf("사각형의 넓이: %d\n", a*b);
}
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.12.10
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
열로 만들 때는 int를 사용해도 된다.
【 8】 문자형의 2차원 배열
<예제1> 오른쪽 데이터를 한 문자씩 2차원 배열에 대입하여 표시하라.
S
e
o
u
l
S
t
a
n
d
T
o
u
c
h
#include <stdio.h>
static char a[][5]={'S','e','o','u','l','S','t','a','n','d','T','o','u','c','h'}
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2004.06.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
을 파일에 써 넣기
[1] "Turbo C","Basic--","Fortran","Cobol--","PL-1---"의 5개 문자열을 re4.txt에 써 넣기
#include <stdio.h>
FILE *in;
main(){
static char a[][8]={"Turbo C","Basic--","Fortran","Cobol--","PL-1---"};
int i; //-는 공란을 의미한다.
in=fopen("re4.txt","w");
for(i=0;i<=4;i+
|
- 페이지 12페이지
- 가격 2,300원
- 등록일 2004.06.09
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c' : 처리3; break;
:
:
default : 처리 n;
}
(예)
#include <stdio.h>
main(){
char ch;
printf("s,b,g중 하나를 입력하시오:");
scanf("%c", &ch);
switch(ch){
case 's' : printf("서울"); break;
case 'b' : printf("부산"); break;
case 'g' : printf("경주"); break;
default : printf("End\n"); //그외
|
- 페이지 11페이지
- 가격 2,300원
- 등록일 2004.05.26
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 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주 판매 이력 없음
|
|
C[6][16];
double res[6][6]={0};
double E[6][6]={0};
void trans(double A[16][6],double B[6][16]); // 함수선언부분
void makeE(double E[6][6]);
void Eliment(double res[][6],double E[][6],int size);
void Makeone(double res[][6],double E[][6],int size);
void Cal(double res[][6],double E[][6],int size);
v
|
- 페이지 16페이지
- 가격 4,000원
- 등록일 2010.05.24
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<stdlib.h>
#include "Vending Machine.h"
#define Max 5
int main()
{
int select = 0, option;
char *BeverageName[Max] = {"콜라", "사이다", "환타", "초록매실", "식혜"};
int Money[5] = {1000, 500, 100, 50, 10};
int Beverage[Max] = {400, 350, 520, 600,
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2004.11.12
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|