|
프로그래밍을 실행시켜 나타나는
결과를 분석한다.
강의식
출력물
화이트보드
보드마카
8051기판
30
독자적 실습
단계
명령어의 기능
(데이터 전송명령, 산술연산
명령, 논리연산명령, 비트
조작명령, 점프명령, 스택과
서브루틴 명령)의 기본
|
- 페이지 6페이지
- 가격 1,000원
- 등록일 2006.12.21
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c\",k);if(k[0]>=\'a\' &&k[0]<=\'z\') cout <<\"문자입니다\" <<endl;else if(k[0]>=\'0\' || k[0]<\'0\') cout <<\"숫자입니다\" <<endl;else cout <<\"입력오류\" <<endl;}
#include<stdio.h>
void main()
{
int a;
a=getchar();
(a-48>=0 &&a-48<=9)?prin
|
- 페이지 4페이지
- 가격 3,360원
- 등록일 2013.10.05
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
printf(\"Infix expression:\\n\");
getLine(strtemp);
minusHandling(strtemp);
} while(!isInfix());
operator_stack[0] = eos; // 연산자 스택에 end of stack값을 넣음
for(i = 0; i < (int)strlen(str) + 1; i++)
{
token = token_cost(i);
// 토큰이 피연산자일 때
if(token == operand && (str[i] >= \'0\' &&
|
- 페이지 15페이지
- 가격 1,000원
- 등록일 2007.06.22
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
c\"
4
5 #define N 100
6
7 int main(void)
8 {
9 int array[N];
10 int i, cnt;
11
12 for(i = 0; i < N; i++)
13 array[i] = i;
14
15 for(i = 0; i < N; i++)
16 printf(\"%3d \", array[i]);
17 putchar(\'\\n\');
18
19 printf(\"Count: %d\\n\", quicksort(array, array + N - 1));
20
21 for(i = 0; i < N;
|
- 페이지 15페이지
- 가격 2,000원
- 등록일 2004.06.08
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
[ERROR : 10731] 오류 발생.
|
- 페이지 20페이지
- 가격 3,000원
- 등록일 2007.12.19
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
printf(\"Player 1 will be X.nPlayer 2 will be O.n\");
//Alternate turns for the users until the board is full
while (!is_full(board)) {
//Set user\'s turn
if (turn == 2) {
turn = 1;
play = \'X\';
}
else {
turn = 2
|
- 페이지 11페이지
- 가격 2,000원
- 등록일 2012.07.29
- 파일종류 워드(doc)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
printf(fp, \"%-s\\n\", data->hakbun);
fprintf(fp, \"%-s\\n\", data->score);
data=data->next;
}
printf(\"\\n==============================\\n\");
printf(\"!!! 파일에 저장하였습니다...!!! \\n\");
printf(\"\\n==============================\\n\");
fclose(fp);
} c 언어를 이용한 성적관리
|
- 페이지 6페이지
- 가격 1,000원
- 등록일 2004.07.02
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
ch(c_head, buf, t);
strcpy(output_name, file_name(3));
write_header(E_cnt, input_name, output_name);
break;
case 2:
strcpy(input_name, file_name(5));
decompress(input_name);
break;
case 3:
exit(0);
default:
printf("잘못 입력하셨습니다!!\n");
}
}
retur
|
- 페이지 20페이지
- 가격 3,000원
- 등록일 2009.03.16
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
printf(\"strupr => %s\\n\",str2);
strcpy(str2,str);
strlwr(str2);
printf(\"strlwr => %s\\n\",str2);
strcpy(str2,str);
strrev(str2);
printf(\"strrev => %s\\n\",str2);
strcpy(str2,str);
strset(str2,\'*\');
printf(\"strset => %s\\n\",str2);
}
strset 함수는 문자열을 c문자로 가득 채운다.
strn
|
- 페이지 7페이지
- 가격 1,000원
- 등록일 2006.12.11
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
printf(\"Decimal = %d, Octal = %o, Hex = %x\\n\",value,value,value);
return(0);
}
▤ 프로그램 4.21
/* Program to ASCII code to character */
#include <stdio.h>
intmain(void)
{
int value;
puts(\"Enter ASCII code (greater than 33)>\");
scanf(\"%d\",&value);
printf(\"Code = %d, character = %c\\n
|
- 페이지 12페이지
- 가격 2,000원
- 등록일 2006.04.17
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|