Guestbook

  1. BlogIcon Heritz 2008/11/16 12:50  modify / delete / reply

    잘 지내고 계신지요 ㅎㅎ
    전 날씨 추워진 기념으로 닉네임 변경 ㅋㅋㅋ

  1. BlogIcon 마티오 2008/11/03 12:02  modify / delete / reply

    친구놈한테 낚여서 필요하지도 않은 프로그래밍 듣고있다가 좌절만 하고 있습니다.
    흑 ㅠ...

  1. 2008/10/06 20:35  modify / delete / reply

    비밀댓글 입니다

  1. BlogIcon 마티오 2008/08/29 12:54  modify / delete / reply

    마감되었던 이벤트가 다시 시작되었군요 ㅋㅋ

  1. BlogIcon 러브네슬리 2008/07/10 23:41  modify / delete / reply

    아직 시험기간이라면서요 ㅋㅋ
    시험은 잘 보시고 계시나요? ^^

    •  modify / delete 2008/07/12 18:14 BlogIcon  환타

      ㅋㅋㅋ 11일에 끝났어요.ㅋㅋㅋ
      결과는 나와봐야 알겠지만............
      ㅋㅋㅋㅋㅋ 웃음밖에 안나와요 ㅋㅋㅋ.
      다음에 열심히 하면 되는거죠 뭐 ㅋㅋ

  1. 2008/07/09 01:18  modify / delete / reply

    비밀댓글 입니다

    •  modify / delete 2008/07/09 14:44 BlogIcon  환타

      더위도 더위지만 아직 시험기간이라 ㅎㅎㅎ
      정말 너무 덥네요 ㅜㅜ

  1. 현수 2008/06/12 12:59  modify / delete / reply

    이거 주석좀 달아주실수있으세요?ㅠㅠㅠㅠ


    #include <stdio.h>

    main()

    {

    int value;

    do {

    printf("정수를 입력하세요.>>“);

    scanf("%d",&value);

    printf("입력한 수는 %d입니다.\n\n", value);

    } while (value != 0);

    }






    #include <stdio.h>

    main()

    {

    int i, age[5];

    printf("\n ag : %p", age);

    for(i = 0; I < 5; I++)

    printf("\n address of age[%d] : %p", I , %age[1]);

    }






    #include <stdio.h>

    #include <string.h>

    main()

    {

    int length, compare;

    char s1[] = "Example String";

    char s2[100];

    printf("%s\n",s1);

    length = strlen(s1);

    printf("s1의 길이 = %d\n", length);

    strcpy(s2,s1);

    printf("s1 =%s\ns2 = %s\n",s1,s2);

    strcat(s2,"String");

    printf("s2 = %s\n",s2);

    compare=strcmp(s1,s2);

    if(!compare) printf("s1 == s2\n");

    else if(compare <0) printf(s1 < s2\n");

    else printf("s1 > s2\n");

    }






    #include <stdio.h>

    main()

    {

    int x = 5;

    int * ptr;

    printf("x 의 값은 %d\n",x);

    ptr = &x;

    *ptr = 10;

    printf("x 의 값은 %d\n",x);









    #include <stdio.h>

    main()

    {

    int *p, *p1, *p2;

    int q, q1,q2;

    p = &q; p1 = &q1; p2 = &q2;

    q = 10; q1=5; q2 = 3;



    printf("q는 %d, p는 %d, *는 %d\n",q,p, *p);

    printf("*p1 - *p2 는 %d\n", *p1 - * p2);

    printf("p1은 %d, p2는 %d, ",p1,p2);

    printf("p1 - p2 는 %d\n", p1 - p2);

    printf("p + 100 은 %d, *(p + 100)는 %d\n", p + 100 ,*(p+100));

    p=p1;

    printf("*p 는 %d\n", *p);

    if(p1 >p2) printf("p1 > p2\n");

    else printf("p1 < p2\n");

    }






    #include <stdio.h>

    main()

    {

    int I, age[5]={1,2,3,4,5};

    printf("age : %p", age);

    for(i = 0; i< 5; I++)

    printf("\naddress of age[%d] : %p", I, &age[i]);

    printf(""\n배열 age[]의 내용\n");

    for(i = 0; I <5; 1++)

    printf("%d", *(age+i));












    #include <stdio.h>

    main()

    {

    char * name[] = {“홍길동”,“컴퓨터 공학부”};

    printf("이름 : %s\n", name[0]);

    printf("학과 : %s\n", name[1]);

    }












    #include <stdio.h>

    #include <math.h>

    main()

    {

    double x = 2.564;

    printf("%1f의 제곱근= %1f\n", x, sqrt (x));

    printf("%1f의 소수점 이하 올림 = %1f\n, x, ceil (x));

    printf("%1f의 소수점 이하 버림 = %1f\n, x, floor(x));

    printf("sin(%if) = %1f\n",x, sin(x));

    printf("cos(%1f) = %1f\n"x, cos(x));

    }









    #include <stdio.h>




    void swap(int *x, int *y);




    main(0

    {

    int x, y;




    printf("첫 번째 숫자를 입력하라. -> “);

    scanf("%d",&x);

    printf("두 번째 숫자를 입력하라. ->“);

    scanf("%d", &y);



    swap(&x,&y);

    printf("첫 번째는 숫자는 %이고 두 번째 숫자는 %입니다.\n".x.y);

    }

    void swap(int * x, int *y)

    {

    int z;

    z= *x;

    *x= *y;

    *y = z;

    }

    메일로부탁드려요 ㅠㅠ sorlagustn@hanmail.net

  1. 새벽 2008/05/21 20:24  modify / delete / reply

    혹시 mfc로 고전게임을 라이프로 만드실 수 있으시나요!? ㅠ

    •  modify / delete 2008/05/22 18:25 BlogIcon  환타

      MFC는 아직은 포기상태입니다. ㅎㅎㅎ
      프로그래밍 공부는 하고싶은데 시간이 너무 없어요 ㅠㅠ

  1. BlogIcon Dabin's 2008/05/05 23:54  modify / delete / reply

    ㅇㅇㅇㅇ그래서내블로그투데이1찍어주기싫다이거지

  1. BlogIcon Dabin's 2008/05/05 14:55  modify / delete / reply

    망햇넼ㅋㅋㅋㅋㅋ