[[TableOfContents]] = 진행사항 = * 참여자 || 튜터 || [최다인] || 참석 || || 튜티 || [김영은] || 참석 || || || [김상렬] || 참석 || * 하노이의 탑 설명 * 구구단 3줄 출력 실습 = 실습 = * 1단 ~ 9단 코드를 3줄로 출력하기. === 김영은 === {{{ }}} === 김상렬 === {{{ }}} === 최다인 === {{{ #include int main () { int i, j, k; for (i = 0; i < 3; i++) { for (j = 0; j < 9; j++) { for (k = 0; k < 3; k++) { printf("%d * %d = %2d ", (k + 1) + (i * 3), j + 1, ((k + 1) + (i * 3)) * (j + 1)); } printf("\n"); } printf("\n"); } return 0; } }}} = 과제 = * N과 M값을 입력받아 N단 ~ M단의 구구단을 예쁘게 출력하기. === 김영은 === {{{ }}} === 김상렬 === {{{ //아직 9 8 7 5 는 구현이 되지 않았습니다. //짜다만 코드인데 저장할곳이 여기 밖에 //좋은 아이디어를 받았다. 그냥 함수로 구현해서 숫자를 입력하기 // 이거를 토대로 코드를 갈자 #include int main(void){ int n,m; int a; int b; int c; printf("n~m단\n"); printf("m please : "); scanf("%d", &m); printf("n please : "); scanf("%d", &n); if(m-n == 0){ printf("wrong input\n"); } else if(m-n <=2){ for(b=1; b<10; b++){ for(a=n; a<=m ; a++){ printf("%d x %d = %2d ", a, b, a*b ); } printf("\n"); } } else if(m-n == 3){ for(c=0;c<2;c++){ for(b=1; b<10; b++){ for(a=n; a<=n+1 ; a++){ printf("%d x %d = %2d ", (a+(c*2)), b, (a+(c*2))*b ); } printf("\n"); } printf("\n"); } } else if(m-n == 4){ for(c=0;c<2;c++){ for(b=1; b<10; b++){ for(a=n; a<=n+2 ; a++){ printf("%d x %d = %2d ", (a+(c*2)), b, (a+(c*2))*b ); } printf("\n"); } printf("\n"); } } else if(m-n == 5){ for(c=0;c<2;c++){ for(b=1; b<10; b++){ for(a=n; a<=n+2; a++){ printf("%d x %d = %2d ", (a+(c*3)), b, (a+(c*3))*b ); } printf("\n"); } printf("\n"); } } return 0; } }}} {{{ /* #include int main(void){ int a; char str1[11]; char str2[11]; printf("please input str1"); scanf("%s", str1); printf("please input str2"); scanf("%s", str2); a = (strcmp(str1,str2) != 0 ); if (a==1){ printf("false"); } else{ printf("true"); } return 0; */ //어쩌다 보니까 옆에 있는 선배가 알려주셨는데, 역시 코드를 저장할 곳이 없습니다 }}} {{{ //별찍기를 연습하자 #include int main(void){ int count ; int countstar ; int num; printf("please input numer : "); scanf("%d", &num); for(count = 0; count<=num ; count++){ for(countstar =0 ; countstar