일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- can't getting credentials
- rwdImageMaps
- Unable to find the global bin directory
- 이미지 좌표 추출
- credential error
- 이미지 맵
- EC2
- 설치완료안됨
- react
- S3
- 반응형 페이지 좌표 변환
- nodejs
- GeoJSON object too complex/large
- ERR_PNPM_NO_GLOBAL_BIN_DIR
- expo
- netlify variables
- AWS
- SASS
- ogr2ogr
- 김골라
- Error:error:0308010C:digital envelope routines::unsupported
- Sequelize Error: Dialect needs to be explicitly supplied as of v4.0.0
- aws ec2
- C언어
- CSS
- 어셈블리어
- NODE_VERSION
- AWS CodeBuild
- node
- AWS CodePipeline
- Today
- Total
목록Programming/C언어 백준 풀이 (26)
ImFe's study
#include int main() { int a=0; int b=0; scanf("%d", &a); scanf("%d", &b); printf("%d\n", a-b); return 0; } A+B문제와 유사함. int형 변수 선언 scanf로 입력 값 변수에 저장 서식 지정자
#include int main() { int a; int b; scanf("%d", &a); scanf("%d", &b); printf("%d", a+b); return 0; } int형 변수의 선언 scanf로 입력 값을 변수에 저장 서식지정자의 이용
#include int main() { printf("|\\_/|\n"); printf("|q p| /}\n"); printf("( 0 )\"\"\"\\\n"); printf("|\"^\"` |\n"); printf("||_/=\\\\__|\n"); return 0; } /* \t : 수평 tab tab(8)칸 띄우기 \n : 개행 커서를 한줄 밑으로 이동(enter와 같은효과) \' : '(쿼티션)을 표시 , 단독으로 '입력시 화면에 출력 x \" : "(더블 쿼티션) 표시 \\ : \(역슬래시 표시) */ 고양이 문제와 같은 방식이다.
#include int main() { printf("\\ /\\\n"); printf(" ) ( \')\n"); printf("( / )\n"); printf(" \\(__)|\n"); return 0; } /* \t : 수평 tab tab(8)칸 띄우기 \n : 개행 커서를 한줄 밑으로 이동(enter와 같은효과) \' : '(쿼티션)을 표시 , 단독으로 '입력시 화면에 출력 x \" : "(더블 쿼티션) 표시 \\ : \(역슬래시 표시) */ printf로 '(쿼티션) "(더블 쿼티션) \(역 슬래시)를 출력하기 위해선 모두 해당 문자 앞에 역슬래시를 붙여주어야 한다.
#include int main() { int i; for (i = 0; i < 2; i++) { printf("강한친구 대한육군\n"); } return 0; } 강한친구 대한육군을 두번 출력해야함. for문의 조건식을 이용
#include int main() { printf("Hello World!"); return 0; }
#include #include using namespace std; int main() { int x; int y; int z; cout