일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Artificial Intelligence
- 데이터 과학
- nodeJS
- R
- WebGL
- 딥러닝
- Big Data
- 김양재 목사님
- 인공지능
- openCV
- 우리들교회
- data science
- Machine Learning
- Deep learning
- Statistics
- node.js
- 김양재 목사
- 빅 데이터
- probability
- c++
- No SQL
- 빅 데이타
- 빅데이타
- 김양재
- 빅데이터
- 확률
- 통계
- MongoDB
- 몽고디비
- 주일설교
Archives
- Today
- Total
목록clockType (1)
Scientific Computing & Data Science
[C/C++] Example / clockType
// // main.cpp // // Created by gchoi on 2014. 5. 16.. // Copyright (c) 2014년 gchoi. All rights reserved. // #include #include #include using namespace std; class clockType { private: int hr; int min; int sec; public: clockType(); clockType(int hr, int min, int sec); void setTime(int hr, int min, int sec); void getTime(int& hr, int& min, int& sec); void printTime() const; void incrementSeconds()..
Programming/C&C++
2014. 6. 12. 11:43