Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
Tags
- 아이오닉 스크롤 이벤트
- ApexChart
- ajax 사용 예시
- Router
- prisma
- formgroup
- 모달
- route
- angular button
- 셀렉트박스 커스텀
- Oracle LISTAGG 사용 예시
- angular animation
- 스크롤 이벤트
- 스크롤 이벤트 감지
- 검색
- flex-1
- mysql if
- 호버
- 앵귤러 애니메이션
- modal
- TAILWIND
- 앵귤러 모달
- scroll
- angular route
- angular modal
- 옵저버블
- Ionic modal
- summary
- Angular Router
- egov spring ajax 사용 예시
Archives
- Today
- Total
깜놀하는 해므찌로
C언어 break, continue 사용 예시 본문
반응형
SMALL
#include <stdio.h>
int main(void){
char o;
while(1){
printf("프로그램을 종료하시겠습니까? (Y/N)");
scanf("%c", &o);
if(o == 'Y' || o == 'y'){
break;
}else if (o == 'N' || o == 'n'){
continue;
}
}
return 0;
}
반응형
LIST
'IT' 카테고리의 다른 글
Angular ... 인자 (0) | 2023.04.13 |
---|---|
Failed to lookup view 에러 해결 방법 (0) | 2023.04.12 |
Css felx 정리 (0) | 2023.04.11 |
Angular FromEvent (0) | 2023.04.11 |
justify-between (0) | 2023.04.10 |