|
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define MAX 5
// 구조체 선언.(구조체 이름 : student)
typedef struct student{
char name[10]; //이름
int kor; //국어점수
int eng; //영어점수
int math; //수학점수
int tot; //총점
|
- 페이지 2페이지
- 가격 800원
- 등록일 2010.08.26
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<conio.h>
#include<windows.h>
#define MAX 1024
//=======================구조체 부분===========================
struct Imformation
{
char name[32];
int no, rank;
float kor, eng, math, total, avg;
|
- 페이지 21페이지
- 가격 3,000원
- 등록일 2008.04.21
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
엘리트사원 찾기 코드중 일부.
#include<stdio.h>
struct profile{ //구조체템플릿선언
char name[20];
double grade;
int toeic;
};
void input_date(profile new_staff[]); //프로토타입
void elite(profile new_staff[]);
int main()
{
struct profile new_staff[5]; //구조체 변
|
- 페이지 10페이지
- 가격 1,500원
- 등록일 2010.02.08
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
#define MAX_TERMS 2500
#define MAX_SIZE 50
//sparse matrix의element구조체선언
typedef struct {
int r;
int c;
int val;
}term;
//sparse matrix 구조체선언
typedef struct {
int numRow;
int numCol;
int numEle;
termlistEle[MAX_TERMS];
}SPARSE_MATRIX; 1주 - Real Number Representation
2
|
- 페이지 5페이지
- 가격 1,000원
- 등록일 2010.05.28
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
// 입출력 제어 헤더파일
#include <stdio.h>
// person 구조체 정의(이름, 전화번호, 주소)
struct person
{
char name[10];
char phoneNumber[15];
char address[30];
};
// main 함수 시작
int main()
{
// 구조체 person을 통하여 두 사람 선언
person hong = {"홍
|
- 페이지 1페이지
- 가격 2,000원
- 등록일 2010.12.22
- 파일종류 기타
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|