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
- 앵귤러 모달
- 검색
- angular route
- ajax 사용 예시
- 스크롤 이벤트
- 스크롤 이벤트 감지
- Oracle LISTAGG 사용 예시
- prisma
- angular modal
- egov spring ajax 사용 예시
- angular animation
- 옵저버블
- 앵귤러 애니메이션
- formgroup
- flex-1
- modal
- summary
- ApexChart
- Router
- TAILWIND
- 셀렉트박스 커스텀
- mysql if
- Angular Router
- Ionic modal
- angular button
- 호버
- scroll
- route
- 모달
- 아이오닉 스크롤 이벤트
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 |