일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 확률
- 몽고디비
- 김양재 목사님
- node.js
- 데이터 과학
- 김양재 목사
- 김양재
- 딥러닝
- nodeJS
- Machine Learning
- openCV
- c++
- Artificial Intelligence
- 빅 데이터
- 빅데이터
- Statistics
- 통계
- 빅 데이타
- 주일설교
- 우리들교회
- data science
- Deep learning
- 빅데이타
- No SQL
- probability
- MongoDB
- R
- WebGL
- Big Data
- 인공지능
Archives
- Today
- Total
Scientific Computing & Data Science
[C/C++] Example / 최대공약수(GCM) 알고리즘 본문
//
// main.cpp
//
// Created by gchoi on 2014. 5. 8..
// Copyright (c) 2014년 gchoi. All rights reserved.
//
#include <iostream>
#include <fstream>
#include <strstream>
using namespace std;
int gcm(int x, int y);
void gcmprint(int x, int y);
int main(int argc, const char * argv[])
{
gcmprint(10, 5);
gcmprint(52, 16);
return 0;
}
int gcm(int x, int y) {
int z;
while ((z = x % y) != 0) {
x = y;
y = z;
}
return y;
}
void gcmprint(int x, int y) {
cout << gcm(x, y) << endl;
}
'Programming > C&C++' 카테고리의 다른 글
[C/C++] Example / String Append (0) | 2014.06.12 |
---|---|
[C/C++] Example / Vector Class (0) | 2014.06.12 |
[C/C++] Example / Reading & Writing to a Binary File (0) | 2014.06.12 |
[C/C++] Example / Reading a File (0) | 2014.06.12 |
[C/C++] Example / Writing a File (0) | 2014.06.12 |
Comments