Difference between r1.3 and the current
@@ -6,7 +6,9 @@
* 오후 3시부터 약 1시간 30분 진행했습니다
= 수업 내용 =
int main()
{
= 수업 내용 =
* 과제 내용을 위주로 실습을 진행했습니다.
== 별로 정사각형 출력하기 == * 중첩 반복문을 이용한 별찍기
{{{int main()
{
@@ -23,8 +25,45 @@
}
}}}
== 7의 개수 출력하기 ==
* 수업 내용 복습
* 중간고사 이후 배열과 주소를 학습합니다.
= 후기 =
}}}
== 7의 개수 출력하기 ==
{{{
int main()
{
int N, counter;
scanf("%d", &N);
counter=0;
while(N){
if(N%10==7){
counter++;
}
N/=10;
}
printf("%d\n", counter);
}
}}}
== Factorial =={{{
int main()
{
int N, i, result;
N=-1;
while(N<0){
scanf("%d", &N);
}
result=1;
for(i=2; i<=N; i++){
result*=i;
}
printf("%d\n", result);
}
}}}
= 다음 수업에 할 내용 =* 수업 내용 복습
* 중간고사 이후 배열과 주소를 학습합니다.
= 후기 =
* 후기 받은 종이가 어딨더라.. - [정진경]
2.1. 별로 정사각형 출력하기 ¶
- 중첩 반복문을 이용한 별찍기
int main() { int N, i, j; scanf("%d", &N); for(i=1; i<=N; i++){ for(j=1; j<=N; j++){ printf("*"); } printf("\n"); } }
2.2. 7의 개수 출력하기 ¶
int main() { int N, counter; scanf("%d", &N); counter=0; while(N){ if(N%10==7){ counter++; } N/=10; } printf("%d\n", counter); }