일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 빅 데이타
- 딥러닝
- 주일설교
- 빅데이터
- c++
- 확률
- Artificial Intelligence
- openCV
- MongoDB
- R
- 김양재 목사
- 김양재 목사님
- node.js
- 몽고디비
- 빅 데이터
- No SQL
- 빅데이타
- data science
- probability
- 데이터 과학
- WebGL
- Machine Learning
- 통계
- Statistics
- Deep learning
- 김양재
- 인공지능
- Big Data
- nodeJS
- 우리들교회
- Today
- Total
목록Programming/C&C++ (37)
Scientific Computing & Data Science
"student.h" // // student.h // Test-001 // // Created by gchoi on 2014. 5. 6.. // Copyright (c) 2014년 gchoi. All rights reserved. // #ifndef Test_001_student_h #define Test_001_student_h #include #include using namespace std; class Student { private: int no; string name; int eng; int math; public: Student(); Student(int no, string name, int eng, int math); void setNo(int no); void setName(string..
"student.h" // // student.h // Test-001 // // Created by gchoi on 2014. 5. 6.. // Copyright (c) 2014년 gchoi. All rights reserved. // #ifndef Test_001_student_h #define Test_001_student_h #include #include using namespace std; class Student { private: int no; string name; int eng; int math; public: void setNo(int no); void setName(string name); void setEng(int eng); void setMath(int math); int ge..
// // main.cpp // #include #include using namespace std; struct Student { int n; string name; int eng; int math; }; int main( int argc , const char * argv []) { Student choi; Student *sp = NULL; sp = &choi; choi.n = 15; choi.name = "geol"; choi.eng = 100; choi.math = 99; cout n
// // main.cpp // #include #include using namespace std; struct Student { int n; string name; int eng; int math; }; int main( int argc , const char * argv []) { Student choi; choi.n = 15; choi.name = "geol"; choi.eng = 100; choi.math = 99; cout
// // main.cpp // Test-001 // // Created by gchoi on 2014. 4. 30.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include using namespace std; int main( int argc , const char * argv []) { int *p = new int; for(int i = 0 ; i < 40 ; i++) { *(p+i) = i + 1; } for(int i = 0 ; i < 40 ; i++) { cout
// // main.cpp // Test-001 // // Created by gchoi on 2014. 4. 30.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include using namespace std; // fucntions prototype void swap( int* x , int * y); int main( int argc , const char * argv []) { int a = 4; int b = 3; int * pa; int * pb; pa = &a ; pb = &b ; cout
// Test-002.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include using namespace std; // fucntions prototype int factorial( int x); void swap( int & x, int & y); int _tmain( int argc , _TCHAR * argv []) { int a = 4; int b = 3; cout