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
- JavaScript
- 백준
- programmers
- php
- udemy
- web
- 종만북
- String
- Algospot
- 따배씨
- Algorithm
- greedy
- C
- Cleancode
- server
- BASIC
- sorting
- graph
- 생활코딩
- 정수론
- 따라하면서 배우는 C언어
- DP
- Math
- 인프런
- C언어
- Python
- BFS
- dfs
- 따라하며 배우는 C언어
- BOJ
Archives
- Today
- Total
몽상실현개발주의
[따배씨] 5.7 나머지 연산 ~ 5.8 증가 ++, 감소 -- 연산자 본문
따배씨 - 따라하며 배우는 C언어
5강 연산자, 표현식, 문장
5.7 나머지 연산 Modulus Operator
#include <stdio.h>
int main(){
int seconds = 0, minutes = 0, hours = 0;
printf("Input seconds: ");
scanf("%d", &seconds);
while (seconds >= 0){
minutes = seconds / 60;
seconds %= 60;
hours = minutes / 60;
minutes %= 60;
printf("%d hours, %d minutes, %d seconds\n", hours, minutes, seconds);
printf("Input seconds:");
scanf("%d", &seconds);
}
return 0;
}
- 나머지 연산 기호: ' % '
5.8 증가 ++, 감소 -- 연산자
#include <stdio.h>
int main(){
int a = 0;
a++; // a = a + 1 or a += 1;
printf("%d\n",a);
++a; // a = a + 1 or a += 1;
printf("%d\n", a);
double b = 0;
b++; // b = b + 1 or b += 1;
printf("%f\n",b);
++b; // b = b + 1 or b += 1;
printf("%f\n", b);
return 0;
}
- 전위 연산자
- ++a
- 연산이 먼저 수행 됨
- 후위 연산자
- a++
- 연산이 나중에 수행
이 글의 모든 사진과 내용의 출처는 홍정모 교수님께 있음을 알려드립니다.
http://blog.naver.com/atelierjpro
http://www.inflearn.com/course/following-c
'Language > C' 카테고리의 다른 글
[따배씨] 5.10 순서도 ~ 5.11 자료형 변환 (0) | 2021.05.18 |
---|---|
[따배씨] 5.9 표현식과 문장 (0) | 2021.05.18 |
[따배씨] 5.6 연산자 우선순위 와 표현식 트리 (0) | 2021.05.16 |
[따배씨] 5.4 곱하기 연산자 ~ 5.5 나누기 연산자 (0) | 2021.05.16 |
[따배씨] 5.2 대입 연산자와 몇 가지 용어들 Object, L-value, R-value, 피연산자 ~ 5.3 더하기, 빼기, 부호 연산자들 (0) | 2021.05.16 |
Comments