Search found 12 matches

by sungbum
Mon Apr 17, 2017 2:30 pm
Forum: 연구실 세미나 게시판
Topic: [2017-04-17] Tendermint Consensus without Mining
Replies: 0
Views: 1924

[2017-04-17] Tendermint Consensus without Mining

Tendermint Consensus without Mining :D
by sungbum
Tue Mar 28, 2017 2:47 pm
Forum: 연구실 세미나 게시판
Topic: [2017-03-06] On the Security and Performance of Proof of Work
Replies: 0
Views: 1782

[2017-03-06] On the Security and Performance of Proof of Work

On the Security and Performance of Proof of Work :lol: :roll:
by sungbum
Wed Nov 02, 2016 11:19 pm
Forum: 수업 게시판
Topic: 컴퓨터프로그래밍Ⅱ[JW0004-3]
Replies: 1
Views: 10755

Re: 컴퓨터프로그래밍Ⅱ[JW0004-3]

경고 C4473 'printf': 서식 문자열에 대한 인수가 충분하게 전달되지 않았습니다. 42 식에 개체 포인터 형식이 있어야 합니다.42 오류 C2109 첨자는 배열 또는 포인터 형식을 사용해야 합니다.42 이런식에 오류와 경고 목록이 생성되는데..어떻게 해결해야하나요? ------- 올린 에러에 대한 답이 있습니다. 연구실 서버에서 코드를 컴파일해보니, 41번째 줄 printf("%3d\t", arrsale[sort[x][y]]); 이 에러인데, sort라는 배열은 일차원으로 선언하고, 출력문에서는 sort를 이차원 배열로 출...
by sungbum
Thu Oct 27, 2016 3:25 pm
Forum: 수업 게시판
Topic: [JW0004-4] 중간고사 답
Replies: 0
Views: 5701

[JW0004-4] 중간고사 답

문제 1: 별 출력프로그램 #include<stdio.h> void start_print(int *ps, int size); int main(void) { int score[100]; int size=0; printf("숫자를 입력하세요 :"); while((scanf("%d",&score[size]))!= -1) // EOF를 입력받기 전까지 입력받음 { size++; //배열에 순차적으로 저장하기 위함 printf("숫자를 입력하세요 :"); } start_print(score,size); // 별 출력하는 함수 호출 retur...
by sungbum
Fri Oct 14, 2016 9:03 pm
Forum: 수업 게시판
Topic: [JW0004-3],[JW0004-4] 퀴즈-2(11장) 문제, 답
Replies: 0
Views: 5522

[JW0004-3],[JW0004-4] 퀴즈-2(11장) 문제, 답

문제-1 2-1.PNG 답안-1 1 #include<stdio.h> 2 #include<string.h> 3 4 int char_count(char *word[], int size); 5 6 int main(void) 7 { 8 int i=0; 9 int j=0; 10 char ch[10][20]; 11 char *word[10]; 12 13 while((scanf("%s",&ch[i]))!= -1) 14 { 15 word[i]=ch[i]; 16 i++; 17 } 18 char_count(word,i); 19 20 return (...
by sungbum
Fri Oct 14, 2016 6:20 pm
Forum: 수업 게시판
Topic: [JW0004-3],[JW0004-4] 퀴즈-1(9-10장) 문제, 답
Replies: 0
Views: 5352

[JW0004-3],[JW0004-4] 퀴즈-1(9-10장) 문제, 답

문제1: 미니 정렬 프로그램 1-1.PNG 답안 1 #include<stdio.h> 2 3 void swap(double *pa, double *pb); 4 void sort(double *pmax, double *pmid, double *pmin); 5 6 int main(void) 7 { 8 double max, mid, min; 9 10 printf("input :"); 11 scanf("%lf%lf%lf", &max, &mid, &min); 12 13 sort(&max, &mid, &min); 14 15 printf("sor...
by sungbum
Sun Mar 01, 2015 3:49 pm
Forum: 연구실 세미나 게시판
Topic: [2015-02-26]보안 기초, 8장, IP보안
Replies: 0
Views: 4396

[2015-02-26]보안 기초, 8장, IP보안

[2015-02-26]보안 기초, 8장, IP보안
by sungbum
Tue Jan 20, 2015 11:02 am
Forum: 연구실 세미나 게시판
Topic: [2015-01-13] 보안 기초, 4장, PKIX, 통합신원관리
Replies: 3
Views: 8375

Re: [2015-01-13] 보안 기초, 4장, PKIX, 통합신원관리(보충)

Re: [2015-01-13] 보안 기초, 4장, PKIX, 통합신원관리(보충)