|
void main(void)
{
int c, i, sum=0;
char data[32];
int *num;
printf("2진수를 입력하시오 :");
scanf("%s", data);
//입력한 문자의 갯수를 카운트
c = 0;
while(1){
if(data[c] != '\0') c++;
else break;
}
printf("입력한 2진수의 갯수 = %d\n", c);
//입력된 2진
|
- 페이지 1페이지
- 가격 800원
- 등록일 2006.09.19
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
4.소스코드
#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <windows.h>
#define TRUE 1
#define FALSE 0
#define GAME_TYPE 5
#define TIME 1000
#define START_MONEY 3000
#define SPEED 110
#define CARD_SPEED 200
int main_menu(int menu); // <
|
- 페이지 57페이지
- 가격 3,300원
- 등록일 2013.01.03
- 파일종류 압축파일
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
C# 수업을 하면서 과제문제 . 시험. 레포트 등의 소스를 담았습니다.
29개 문제소스가 들어가 있습니다. 1. 거꾸로문장
2. 피보나치
3. 우물탈출
4. 369게임
5. 문자열대체
6. 팩토리얼
그외 23개 문제소스
|
- 페이지 29페이지
- 가격 3,000원
- 등록일 2009.07.07
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
-
void in_it_card()
{
head=(card*)malloc(sizeof(card));
tail=(card*)malloc(sizeof(card));
head->next=tail;
tail->next=tail;
}
//-------------------------------------------------------------------------------
//구조체를 생성하고 삽입합니다.--------------------------------------------------
card
|
- 페이지 10페이지
- 가격 1,000원
- 등록일 2006.12.13
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
check_the_winner(int k);
void input_turn(void);
void print_board(void);
char id_input(char *c, char *d);
void display_rule(void);
void init_array(void);
void main()
{
int player=0;
int check;
char re;
init_array();
(이하 생략.) 소스코드입니다
|
- 페이지 2페이지
- 가격 500원
- 등록일 2013.04.19
- 파일종류 텍스트(txt)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
#include <stdio.h>
//해더파일 선언
int main(void)
{
float a,b,d;
int e;
char c;
while(1) //무한반복
{
printf("\n");
printf("\n");
printf("///////////////////////////////////////////////////////\n");
printf("// 간단한 연산을 수행하는 프로그램입니다.
|
- 페이지 2페이지
- 가격 800원
- 등록일 2009.01.02
- 파일종류 텍스트(txt)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
365;
printf(\"1분 : %d초\\n\", minute1);
printf(\"1시간 : %d초\\n\", hour1);
printf(\"1일 : %d초\\n\", day1);
printf(\"1년 : %d초\\n\", year1);
} (1) 다음 괄호 부분을 채우시오.
(2) 다음 소스에서의 에러를 찾아보고 수정하시오.
(3) 다음 프로그램을 작성하시오.
|
- 페이지 4페이지
- 가격 1,000원
- 등록일 2006.11.04
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
return (1);
}
문제 6 ] 한 문자를 입력받아 화면에 출력하는 프로그램
#include <stdio.h>
void main()
{
char ch;
scanf(\"%c\", &ch);
printf(\"입력받은 문자 = %c \\n\", ch);
}
문제 7 ] 다음 프로그램의 수행 결과를 쓰시오.
#include <stdio.h>
int sum(int);
void main()
{
|
- 페이지 9페이지
- 가격 1,000원
- 등록일 2004.11.28
- 파일종류 한글(hwp)
- 참고문헌 있음
- 최근 2주 판매 이력 없음
|
|
int main()
{
int i, j;
char input;
int temp;
cdir_t dir;
do{
for (i=0;i<29;i++)
for (j=0;j<29;j++)
data[i][j]=ori_data[i][j];/*data배열에 ori_data배열값 입력*/
Cx = 14, Cy = 14;/*처음 커서위치를 결정*/
system("cls");
temp = data
|
- 페이지 5페이지
- 가격 1,500원
- 등록일 2004.11.16
- 파일종류 압축파일
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|
|
.h>
#define BUS_STOP 19
#define BUS_INTERVAL 300
#define BUS_DRIVE 180
#define HUMAN_ARRIVAL 30
#define BOARDING_TIME 6
const int numOfbus = 30;
enum {BUS_LEAVE,BUS_ARRIVE,HUMAN_ARRIVE}; //event type
struct EVENT_TYPE { long time;
int event_type,data;
EVENT_TYPE* next;
};
void insertq(long,int,in
|
- 페이지 13페이지
- 가격 2,300원
- 등록일 2002.09.22
- 파일종류 한글(hwp)
- 참고문헌 없음
- 최근 2주 판매 이력 없음
|