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 | 29 | 30 | 31 |
Tags
- hackerrank
- PHP 웹페이지 만들기
- XSS Game
- lob
- 머신러닝
- 자료구조 복습
- WarGame
- 웹페이지 만들기
- CSS
- 숙명여자대학교 정보보안동아리
- BOJ
- 숙명여자대학교 정보보안 동아리
- Javascript
- 드림핵
- BOJ Python
- Python
- SWEA
- siss
- c
- 풀이
- HTML
- 파이썬
- 백준
- 생활코딩
- The Loard of BOF
- C언어
- c++
- 기계학습
- Sookmyung Information Security Study
- hackctf
Archives
- Today
- Total
목록2941 C (1)
혜랑's STORY
[BOJ_C] 2941번, 2884번
#BOJ 2941번 : 크로아티아 알파벳 - 풀이 #include int main(){ char str[101]; int cnt = 0; scanf("%s", str); for(int i=0; str[i]; i++){ if(str[i] == 'c') if(str[i+1] == '-' || str[i+1] == '=') i++; if(str[i] == 'd'){ if(str[i+1] == '-') i++; else if(str[i+1] == 'z' && str[i+2] == '=') i += 2; } if(str[i] == 'l' || str[i] == 'n') if(str[i+1] == 'j') i++; if(str[i] == 's' || str[i] == 'z') if(str[i+1] == '=') i..
2021 SISS 21기 활동/겨울방학 C
2021. 1. 23. 17:07