전체 글351 [3장] 분류: 스팸 필터링 Classification: Spam Filtering 2018. 10. 6. [2장] 데이터 탐색(data exploration) 2018. 10. 6. [1장] R 사용하기 2018. 10. 6. 실습문제3 1. 2. 3. 2018. 10. 6. 자바 AWT 계산기, COPY() 오버라이딩 1. 자바 AWT를 이용하여 사칙연산 계산기 만들기 2. FilterOutputStream 클래스를 상속하여 2개의 기본 스트림에 동시에 write 하는 클래스를 작성하시오. 그 다음,이 클래스를 이용하여 한 개의 파일을 2개의 새로운 파일에 복사하는 클래스를 작성하시오. 단, 파일 이름들은명령행 인자로 받아들이고, 복사에 사용하는 메소드는 예제 2.7의 ‘copy()’ 를 활용하시오. 2018. 10. 6. [5장]객체지향 분석 -권기태- 2018. 10. 6. [4장]소프트웨어 요구사항 -권기태- 2018. 10. 6. [3장]프로젝트 관리 -권기태- 2018. 10. 6. [2장]소프트웨어 프로세스 -권기태- 2018. 10. 6. [1장]소프트웨어공학 개요 -권기태- 2018. 10. 6. [1015] 수열 정렬 #include #include #include using namespace std;int main(){ int size, num; int arr[51]; cin >> size; vector v; for(int i = 0; i > num; v.push_back(make_pair(num, i)); } sort(v.begin(), v.end()); for(int i = 0; i 2018. 10. 3. [10814] 나이순 정렬 #include #include #include #include using namespace std;bool cmp(pair v1, pair v2){if (v1.first > n;for (j = 0; j > age >> name;v.push_back(make_pair(age, name));}stable_sort(v.begin(), v.end(), cmp);for (j = 0; j 2018. 10. 3. [42748] K번째수 #include #include #include using namespace std;vector solution(vector array, vector commands){vector answer;int i, j, k;int size = commands.size();for (int s = 0; s 2018. 9. 17. [42583] 주식가격 #include #include #include using namespace std;vector solution(vector prices){vector answer;int i, j, time = 0;for (i = 0; i 2018. 9. 14. [10546] 배부른 마라토너/ [프로그래머스] 완주하지 못한 선수 #include #include #include #include using namespace std;map m;string str[100000];string str1;int main(){ int n,i; scanf("%d",&n); for(i = 0; i > str[i], m[str[i]]++; for (i = 0; i > str1, m[str1]--; for (i = 0; i 2018. 9. 14. [12790] Mini Fantasy War #include using namespace std;int main(){int i, t;int arr[4], a;cin >> t;while (t--){for (i = 0; i > arr[i];for (i = 0; i > a;arr[i] += a;}if (arr[0] 2018. 9. 10. 자바 스트림 실습 문제 1. 커맨드 라인으로부터 파일 이름들을 입력 받아 System.out 으로 출력하는 클래스를 작성하시오. 화면에 출력 시 파일 이름과 함께 내용을 출력하고 각 파일의 출력 내용 사이에 적당한 기호로 구분하시오. 파일이름은 편의상 file1.txt, file2.txt, ,,,로 하시오. package chapter1;import java.io.*;import java.util.NoSuchElementException;import java.util.Scanner; public class ex01_1{ public static void main(String[] args) throws IOException { Scanner scan = new Scanner(System.in); while(true) { try .. 2018. 9. 9. [8741] 이진수 합 #include #include using namespace std;int main(){int n;cin >> n;string front(n, '1');string back(n - 1, '0');cout 2018. 9. 3. [10995] 별 찍기 - 20 #include using namespace std;int main(){int n, i, j;cin >> n;for (i = 1; i 2018. 8. 29. [15156] 과제 #include using namespace std;int main(){double K, N, M;cin >> K >> N >> M;if (K*N > M)cout 2018. 8. 27. 이전 1 ··· 6 7 8 9 10 11 12 ··· 18 다음