English
中文(简体)
中文(繁体)
한국어
日本語
English
Português
Español
Русский
العربية
Indonesia
Deutsch
Français
ภาษาไทย
Home
Downcodes
Programming Related
Website Building Resources
Books and Tutorials
Web Design Tutorials
Network Programming Tutorials
Mobile Games
Mobile Software
Articles
Home
>
Books and tutorials
>
Programming development
C/C++ algorithm examples
Programming development
No Resources Available
1. Number theory algorithm
1. Find the greatest common divisor of two numbers
function gcd(a,b:integer):integer;
begin
if b=0 then gcd:=a
else gcd:=gcd (b,a mod b);
end ;
Expand
Additional Information
Version
Type
Programming development
Update Time
2009-06-03
size
21504
Language
Simplified Chinese
Related Applications
Plan C
2023-07-06
Code SC
2023-05-17
High quality C++/C programming guide
2023-04-18
c婷婷 anime
2023-04-14
C/C++ and data structures
2010-03-27
Common algorithm design methods in C/C++
2009-06-09
Recommended for You
Google Chrome
Home page browsing
3.0.190.0 build 18892 绿色多语版_Google Chrome浏览器
Google Chrome
Home page browsing
3.0.182.3 Dev 多国语言官方安装版
Google Chrome
Home page browsing
3.0.182.3 Dev 多国语言绿色便携版
Detailed introduction to KML file format
XML tutorial
JDK 6.0 Chinese version help document (with search function, chm format)
JSP tutorial
Program to intercept videos and transmit them online in mpeg4 format
VC/VC++
PHP Chinese version manual (Extended CHM format)
PHP tutorial
Online conversion source code of video Flv format
Other categories
PHP recruitment program source code version |[BBWPS]
Talent and real estate
V3.0
Related Information
All
Best Krig C Loadout in Black Ops 6 & Warzone
2024-11-15
Introduction to the conditions for upgrading Coral Island from level C to level D
2024-11-14
C language strrchr() function: Find the position of the last occurrence of character c in a string
2024-11-13
C++ introductory tutorial (matching programming question bank)
2024-11-06
C++ introductory tutorial
2024-11-06
How to learn C++ well
2024-11-06
From C to C++
2024-11-06
Interpreting the first C++ program
2024-11-06
Input and output in C++
2024-11-06
Data types in C++
2024-11-06
C++ arithmetic operator examples explained
2024-11-06
C++bool type example explanation
2024-11-06
User Comments