본문 바로가기

분류 전체보기439

백준 14503번 C++ #includeusing namespace std; const int MAX = 51;int n, m;pair currentpos;int way[MAX][MAX]; typedef struct {int x, y;}Move;Move mv[4] = { {-1,0}, {0,1}, {1,0}, {0,-1} }; int calclean() {int ans = 0; while (true) {if (way[currentpos.first.first][currentpos.first.second] == 0) {ans++;way[currentpos.first.first][currentpos.first.second] = 2;} int flag = 0;for (int i = 0; i < 4; i++) {currentpos.sec.. 2019. 1. 26.
백준 13458번 C++ #includeusing namespace std; const int MAX = 1000001;int n, b, c;int student[MAX]; void calexam() {long long ans = 0; for (int i = 0; i b) {student[i] -= b;ans += student[i] / c;if (student[i] % c > 0)ans++;}}cout n;for (int i = 0; i > student[i];}cin >> b >> c;calexam();} 2019. 1. 26.
JSP 빈즈 프로그래밍 이번 글에서는 JSP 빈즈를 이용하여 주소록을 구현해 볼 것입니다. 1. 화면 구성1-1. 주소록 목록 화면 1-2. 주소록 등록 화면과 등록 처리 1-3. 주소록 등록 처리 2. 빈즈 프로그램 구현 2019. 1. 25.
JSP 빈즈 프로그래밍 이 글은 프로젝트로 배우는 자바 웹 프로그래밍 책을 보고 쓴 글 입니다. 이번에는 JSP빈즈를 이용하여 사용자 로그인 웹을 구현해 볼 것 입니다. 1. 사용자 인터페이스 화면 준비 2. 폼 처리를 위한 JSP 파일 준비 3. 사용자 인증을 위한 빈즈 작성 아직 데이터베이스를 연동하지 않았기 때문에 빈즈에서 미리 지정해둔 myuser와 1234로 로그인을 해야만 로그인에 성공합니다. 2019. 1. 24.