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
- 셀렉트박스 커스텀
- TAILWIND
- route
- modal
- flex-1
- ajax 사용 예시
- 스크롤 이벤트 감지
- mysql if
- angular animation
- Angular Router
- Oracle LISTAGG 사용 예시
- angular route
- 호버
- 검색
- ApexChart
- 옵저버블
- scroll
- angular modal
- 앵귤러 애니메이션
- angular button
- summary
- egov spring ajax 사용 예시
- 모달
- 아이오닉 스크롤 이벤트
- 앵귤러 모달
- prisma
- Router
- formgroup
- 스크롤 이벤트
- Ionic modal
Archives
- Today
- Total
깜놀하는 해므찌로
C언어 입력 scanf 사용 예시 & 본문
반응형
SMALL
#include <stdio.h>
int main(void){
char o;
int x, y;
while(1){
printf("수식을 입력하세요");
scanf("%d %c %d", &x, &o, &y); // scanf 사용 시 변수 앞에 &
if(o == '+'){ // char 비교 시 ''
printf("%d %c %d = %d\n", x, o, y, x + y);
}
}
return 0;
}
반응형
LIST
'IT' 카테고리의 다른 글
justify-between (0) | 2023.04.10 |
---|---|
angular page 생성 cli (0) | 2023.04.10 |
typescript ?? 물음표 2개 (0) | 2023.04.09 |
Angular started basic 앵귤러 시작하기 / 프로젝트 생성 (0) | 2023.04.09 |
Angular 마우스 좌표 (0) | 2023.04.09 |