|
|
 |
|
프로그램
#include
#include
#include
#define LINE_MAX 256 /* Max: 255 characters per line */
#define WORD_MAX 20
#define TOP_SINGLE_MAX 20
#define TOP_PAIR_MAX 20
typedef struct list_single *list_single_ptr;
typedef struct list_pair *list_pair_ptr;
typedef struct list_pair {
char str[WORD_MAX];
int pair_freq;
list_pair_ptr plink;
}list_pai.. |
|
|
|
|
|
 |
|
TAKEAWAYS
1
TAKEAWAYS
2.1
Job performance is the set of employee behaviors that contribute to organizational goal accomplishment.
Job performance has three dimensions : task performance, citizenship behavior, and counterproductive behavior.
TAKEAWAYS
2.2
Task performance includes employee behaviors that are directly involved in the transformation of organizational resources i.. |
|
|
|
|
|
 |
 |
롯데백화점경영,마케팅,브랜드,브랜드마케팅,기업,서비스마케팅,글로벌,경영,시장,사례,swot,stp,4p ( 90Pages ) |
|
The Final Report
CONTENTS
1. Introduction
2. Organizational Chart
3. Value Chain
4. Business Functions Processes
5. Competitive Forces Model
6. IT Infrastructure
7. MIS
8. Innovative IT Strategy
LOTTE DEPARTMENT STORE
1. Introduction
1.1 Company Overview
About Lotte
Founded
November 26th, 1979
Headquarter
Seoul, South Korea
Domestic Stores
Overseas Stores
29 Department St.. |
|
|
|
|
|
 |
|
01 다음 프로그램은 5장 제어문의 [종합문제 3번] 문제를 배열을 이용하여 다시 작성한 프로그램이다. 이 프로그램은 키보드로부터 3개의 수를 입력받아 작은 수에서 큰 수로 정렬하여 출력하는 프로그램이다.
위 프로그램을 다음과 같이 큰 수에서 작은 수로 정렬하여 출력하도록 다시 작성하시오.
1. 프로그램 코드
#include [stdio.h]
void main()
{
int num[3], temp;
.... |
|
|
|
|
|
 |
|
Independent Agent Agreement
File: 12345-A123
October 23, 2007
To ○○○ COLLEGE
Attn ○○○/ President
Subject : Independent Agent Agreement of ○○○ College
We are transmitting 5page(s) including this page. Our connection company name is ○○○ Emigration Corporation and the other one ○○○ Seoul Branch.
If you do not receive all page, please telephone the operator at (0.. |
|
|
|
|
|
 |
|
프로그래밍 및 실습
목차
행렬식 계산
C++로 나타낸 행렬식 계산
결과값
고찰
행렬식 계산
-행렬을 어떠한 하나의 실수 값으로 표현한 것
-행렬식의 성질
(1) 행렬식은 오직 정방 행렬에서만 정의된다.
(2) 구성 성분이 하나인 행렬의 행렬식은 그 성분 자체이다.
(3) 행렬식의 값은 하나의 상수 즉, 임의의 실수이다.
(4) n차의 행렬식 |An*n|은 n개의 행과 열의 위치가 서로 다른 성분들의 곱의 합으.. |
|
|
|
|
|
 |
|
2008-061
프로그래밍언어론 과제#1
정보컴퓨터공학전공 부산대학교
2008년 3월 21일
1. 1.5
문제 - Imperative VS Applicative programs
1.1 Imperative Version
1) Source Code
#include [stdio.h]
#include [stdlib.h]
void print(double value){
printf(%.5f
,value)
}
double fib(int n){// [1]
int index
double last1, last2, result
if(n[=2){
return 1
}
last1 =1
last2 =1
for(ind.. |
|
|
|
|
|
 |
|
Scroll Compressors for Residential Light Commercial
Setting new standards in energy efficiency and reliability
Danfoss scroll compressors are the quietest, most reliable and longest-lasting compressors in the HVAC R industry. Key features include: • Simple, compact design • Lightweight construction • 90% of internal bolts have been eliminated • One-third fewer parts than comp.. |
|
|
|
|
|
 |
|
/*
파일명 : main.cpp
프로그램 : poker 프로젝트의 main함수 파일
내용 : 포커게임 시뮬레이션(가상실험) 프로젝트
작성자 : 손민균 200658117
작성일 : 2010. 11. 18.
*/
#include poker.h
int main(void)
{
int i, j;
card deck[52]; //52장의 카드로 이루어진 카드 한 덱
card hand[NPLAYER][5]; //플레이어가 가지는 카드들
srand((unsigned)time(NULL));
fill_deck(deck);
shuffle(deck);
.. |
|
|
|
|
|
 |
|
실험․실습 보고서
포인터와 Call by reference
1. 제목
포인터와 Call by reference.
2. 목적
포인터를 이해함으로써 함수의 한계를 극복할 수 있음을 알고, 또 이를 이용해서 프로그래밍의 활용 폭을 넓히자.
3. 실습에 필요한 기초지식
* 포인터(pointer)는 메모리상의 어떤 주소를 가리키고, 메모리상의 주소에는 데이터가 저장되므로 결국 포인터는 메모리에 저장된 데이터의 위치를 가리킴.
4. .. |
|
|
|
|
|
 |
|
Sport Marketing
CONTENTS
About Coca Cola
Coca Cola VS. Pepsi
Conclusion
Characteristics of Coca Cola’s Marketing
Possible Changes
Marketing Strategies
Sponsorship
Endorsement
About Coca Cola
History
1866 First made by an American pharmacist
John Pemberton
1928 Became the official sponsor of the Olympic Games
1930 Official Sponsor of the FIFA World Cup
Symbol
The Re.. |
|
|
|
|
|
 |
|
1. Linked list를 사용하여, Queue의 모든 연산을 구현하시오.
Str_queue.h
// 구조체선언
struct node
{
int data; // 이름 메일 전화번호 선언
node *next;// 다음 노드의 주소를 가르킴
};
class queueClass{
public:
queueClass(); //생성자함수
queueClass(const queueClass s); //복사생성자함수
~queueClass(); //소멸자함수
void add(int Item); //Item 값을 큐에 삽입
void remove(); //큐.. |
|
|
|
|
|
 |
 |
스포츠마케팅0,마케팅,브랜드,브랜드마케팅,기업,서비스마케팅,글로벌,경영,시장,사례,swot,stp,4p ( 19Pages ) |
|
Sport Marketing
CONTENTS
About Coca Cola
Coca Cola VS. Pepsi
Conclusion
Characteristics of Coca Cola’s Marketing
Possible Changes
Marketing Strategies
Sponsorship
Endorsement
About Coca Cola
History
1866 First made by an American pharmacist
John Pemberton
1928 Became the official sponsor of the Olympic Games
1930 Official Sponsor of the FIFA World Cup
Symbol
The Re.. |
|
|
|
|
|
 |
|
변환명세 및 연산 이해
1. 170page 4번문제] 두 수를 곱하는 매크로MULT(x,y)를 정의하여 다음과 같은 문장이 실행되도록 프로그램을 작성하시오.
result = MULT(10, 10);
#include [stdio.h]
#define MULT(x, y) (x)*(y)
int main(void)
{
printf( 3과 29의 곱은 %d입니다.
, MULT(3, 29));
return 0;
}
결과
3과 29의 곱은 87입니다.
Press any key to continue
위의 소스와 같이 #define 명령을.. |
|
|
|
|
|
 |
|
실험․실습 보고서
함수 그리고 전역변수와 지역변수, 정적변수
1. 제목
함수 그리고 전역변수와 지역변수, 정적변수
2. 목적
전역변수와 지역변수, 정적변수들을 함수의 특성에 맞게 적재적시에 구현 할수 있게 한다.
3. 실습에 필요한 기초지식
4. 실습 절차, 내용 및 결과
(1) 지역변수
#include [stdio.h]
void f1( int a);// 함수 선언
void main()
{
int a= 10; // 지역 변수 -{} 내에서 사.. |
|
|
|
|
|