U E D R , A S I H C RSS

새싹교실/2011/무전취식/레벨2

* : 2011/3/29 5~ 7
* : 06
* : 11



1. ICE Breaking


Ice Breaking

: . Toeic험. L/C
860 . Toeic
7 2 . . . 3. . . 6 9 . . .

: . -Why ? . . : . . . . 3 ㅠㅠ. . . . . - All - . NXT ㅋㅋㅋ
. / 8 4 4 . 4 함. ㅋㅋㅋ ㅠㅠㅠㅠㅠㅠㅠ ! MT ㅠㅠ : . MT !!!

태 : . MT . . 11 . . : MT. . .

: . 함. 6 10. . MT . 2~~~ 2 ㅋㅋ 'ㅅ'//// 06 . 한, , , 11 ㅋㅋㅋㅋㅋ 06 ㅋㅋㅋ ㅠㅠ 6 한 30 . . 2. 2 . ㅋㅋ. . ㅠㅠ

: MT. ㅠㅠ ㅋㅋㅋㅋㅋㅋㅋㅋ MT 함=ㅂ= . ㅋㅋㅋㅋㅋ 2. 'ㅅ'// . . . (하). 1. ㅋㅋㅋㅋㅋ 한테 . 포. ㅋㅋ . . 학 . 학하~~~~~~


2.


  • printf() scanf()함 . %c %d %l %f %%.
  • 한 Array. . int a[10];
  • Memory .
  • ! 하. . . & .
  • ? 16. 16 ? 1~15. ? 1~F.
  • unsinged int int ? 표 ?
  • 0 1 .
  • ; .
  • . .( if,switch{case},while(){},do~while();,for( ; ; ) )

3.


  • if

  • #include<stdio.h>
    
    int main(){
     int select;
     printf("1 2 택해!");
     scanf("%d",&select); <- input 1
     if(select == 1){
       printf(" ");
     }
     if(select == 2){
       printf(" ");
     }
     return 0;
    }
    

    • Switch case

    #include<stdio.h>
    
    int main(){
     int select;
     printf("1 2 택해!");
     scanf("%d",&select); <- input 3
     
     swtich(select){
       default : printf("  "); 
       case 1: printf(" "); break;
       case 2: printf(" "); break;
    
     }
     return 0;
    }
    
    output ==>     
    
    


    • while

    #include<stdio.h>
    
    int main(){
     int count = 0;
     while(count < 10){
       printf("헐");
       count = count + 1;
     }
    
     return 0;
    }
    
    output ==> 헐헐헐헐헐헐헐헐헐헐
    
    

    • do~ while

    #include<stdio.h>
    
    int main(){
     int count = 0;
     do{
       printf("헐");
       count = count + 1;
     }while(count > 0);
    
     return 0;
    }
    
    output ==> 헐
    

    • for

    #include<stdio.h>
    
    int main(){
     int count = 0;
     for(count = 0; count <10;count++){
       printf("");
     }
    
     return 0;
    }
    output ==> 
    
    





    4.


    : 히 해, .
    : , .. . , . .
    태 : if .
    : ...... ....... . ^^
    : . 해했


    5.

    • : F4(ThreeFs + Future Action Plan) .
      • : ThreeFs, ThreeFs(크), FiveFs(크)

        • Facts, Feelings, Findings, Future Action Plan. , , , , 획.
        • : " 5 .() .() .() .( 획)"

    • . . . . !!! .. . . -

    • . 폭풍 MT . . . . -
      • 호~ ? 2 . . ㅋㅋ -

    • ....(;;;) ;; . (?) 하 (?) 해 C .. .. .. -
      • . ㅋㅋㅋ -

    • .. ...ㅋㅋㅋㅋㅋㅋ ...int? -231~231-1 히힝ㅇ... ㅇㅏ.. ? . ... ~~~ ♥♥ -
      • 크크크 해하 해한 . . ㅠㅠ? . ㅋ -

    • ...ㅠ_ㅠ ㅠㅠ ㅋㅋㅋㅋ .... .., if, while !! 흐히. !!!!!!! .... ..? ㅠㅠ? 하.. ㅋㅋㅋㅋㅋㅋㅋㅋ ㅋㅋㅋㅋㅋㅋㅋㅋㅋ -

    6.

    - Wiki
    - .


    - ㅜㅜ -
    Valid XHTML 1.0! Valid CSS! powered by MoniWiki
    last modified 2021-02-07 05:29:43
    Processing time 0.0491 sec