일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
- c
- Javascript
- 기계학습
- PHP 웹페이지 만들기
- BOJ
- siss
- BOJ Python
- 드림핵
- hackerrank
- 파이썬
- 백준
- lob
- Python
- XSS Game
- 머신러닝
- SWEA
- hackctf
- Sookmyung Information Security Study
- 생활코딩
- HTML
- 숙명여자대학교 정보보안 동아리
- 풀이
- 숙명여자대학교 정보보안동아리
- 웹페이지 만들기
- The Loard of BOF
- CSS
- WarGame
- C언어
- c++
- 자료구조 복습
- Today
- Total
목록siss (91)
혜랑's STORY
1. SWEA 2027번(반복문 사용) #include int main() { for (int a = 0; a < 5; a++) { for (int b = 0; b < 5; b++) { if (a == b) { //a와 b가 같은 수를 가질 때 '#'으로 채워준다. 즉, a와 b가 같은 곳은 대각선 자리 printf("#"); } else { //a와 b가 같지 않은 나머지 자리에는 '+'로 채워준다. printf("+"); } } printf("\n"); } return 0; } for(int i=0; i
1. SWEA 2043번 #include int main() { int a, b; scanf("%d %d", &a, &b); printf("%d", a - b + 1); return 0; } -> b가 a가 되기 위하여 1씩 증가 해야하는 수는 ( a-b+1 )이다. 2. SWEA 1932번 #include int main() { int a, b; scanf("%d %d", &a, &b); //더하기(+) printf("%d\n", a + b); //빼기(-) printf("%d\n", a - b); //곱하기(*) printf("%d\n", a * b); //나누기(/) printf("%d", a / b); return 0; } 3. 양의 정수를 입력받아서, 그 정수가 소수인지 아닌지 판별하는 프로그램..
1. SWEA 2027번 #include int main() { printf("#++++\n"); printf("+#+++\n"); printf("++#++\n"); printf("+++#+\n"); printf("++++#\n"); return 0; } printf() : 괄호 안에 있는 문자(숫자)를 출력해주는 함수이다. \n : 다음 줄로 넘겨주는(새로운 줄로 이동. enter 역할) 이스케이프 문자이다. 2. 화씨 온도를 입력받아 섭씨온도를 출력하기. -> 화씨온도 = 섭씨온도*9/5 +32 #include int main(){ float temperature = 0; printf("화씨 온도를 입력하세요 : "); scanf("%f", &temperature); printf("섭씨 온도는 %.1..