목록전체 글 (57)
독도갈매기의 개발 블로그
[알고리즘] 백준 구구단 2739번
#include using namespace std; int main() { int first; cin >> first; for (int i = 0; i < 9; i++) { cout
알고리즘
2020. 9. 19. 01:00
[알고리즘] 백준 시험성적 9498번
#include using namespace std; int main() { int score; cin >> score; (score >= 90) ? cout
알고리즘
2020. 9. 18. 00:25