일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 29 | 30 |
- react
- rwdImageMaps
- 이미지 좌표 추출
- netlify variables
- 어셈블리어
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- C언어
- AWS CodeBuild
- 설치완료안됨
- S3
- AWS
- node
- EC2
- aws ec2
- Error:error:0308010C:digital envelope routines::unsupported
- GeoJSON object too complex/large
- ogr2ogr
- can't getting credentials
- nodejs
- Unable to find the global bin directory
- CSS
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- 김골라
- SASS
- 이미지 맵
- 반응형 페이지 좌표 변환
- NODE_VERSION
- expo
- credential error
- AWS CodePipeline
- Today
- Total
목록Programming (37)
ImFe's study
#include int main() { int dan=0; scanf("%d", &dan); for(int i=1; i
#include int main() { int h, m = 0; scanf("%d %d", &h, &m); if (m >= 45) { m -= 45; } else { h -= 1; m += 15; } if (h < 0) {h = 23; } printf("%d %d", h, m); return 0; }
보자마자 goto를 한번 써봐야겠다는 생각이 들었다. #include int main() { int x, y; scanf("%d\n", &x); scanf("%d\n", &y); if(x>0) goto ilsa; else goto samsa; ilsa: if(y>0) { printf("1\n"); goto exit; } else { printf("4\n"); goto exit; } samsa: if(y
#include int main() { int yoon; scanf("%d", &yoon); if(yoon%4==0&&yoon%100!=0) printf("1\n"); else if(yoon%400==0) printf("1\n"); else printf("0"); return 0; }
#include int main() { int score; scanf("%d", &score); if(score>=90) printf("A"); else if(score>=80) printf("B"); else if(score>=70) printf("C"); else if(score>=60) printf("D"); else printf("F"); return 0; } 비교연산자 >= if랑 else는 단 한번만 사용 할 수있지만, else if는 여러번 사용 가능하다. else if 앞에 else가 오면 컴파일 에러가 발생한다.
#include int main() { int a,b=0; scanf("%d %d", &a, &b); if(a>b) printf(">"); if(a
원하는 출력값을 그대로 입력해준다. #include int main() { int a; int b; int c; scanf("%d %d %d", &a, &b, &c); printf("%d\n", (a+b)%c); printf("%d\n", ((a%c)+(b%c))%c); printf("%d\n", (a*b)%c); printf("%d\n", ((a%c)*(b%c))%c); return 0; }
문제) 123*456이라고 가정하면 123*6, 123*5, 123*4의 값과 123*456의 값이 필요하다. 123*일의 자리, 123*십의 자리, 123*백의자리 순으로 계산해 주어야 한다. #include int main() { int a,b=0; scanf("%d %d", &a, &b); printf("%d\n", a*(b%10)); printf("%d\n", a*((b/10)%10)); printf("%d\n", a*(b/100)); printf("%d", a*b); return 0; } 나머지 연산(modulo)과 나누기 연산을 잘 활용하면 해당 자릿수만 이용 할 수 있다(정수형이여서 소숫점은 잘린다)