English
中文(简体)
中文(繁体)
한국어
日本語
English
Português
Español
Русский
العربية
Indonesia
Deutsch
Français
ภาษาไทย
Complete Sitemap
Latest Updates
Home
Source Code
Programming Related
Website Building Resources
Web Design Tutorials
Network Programming Tutorials
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
21KB
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
chat.petals.dev
Other source code
1.0.0
GPT Prompt Templates
Other source code
1.0.0
GPTyped
Other source code
GPTyped 1.0.5
Weblogic Administrator Manual
Programming development
Oreilly Java Servlet And JSP Cookbook(CHM)
Programming development
Agile Web Development with Rails 2nd
Programming development
waymo open dataset
Other source code
December 2023 Update
wp functions
Other categories
1.0.0
termwind
Other categories
v2.3.0
Related Information
All
How to define global variables in C language project
2024-11-21
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