Skip to content

提出#199

Open
TaigaTakaoka wants to merge 1 commit intoalgd2022:mainfrom
TaigaTakaoka:main
Open

提出#199
TaigaTakaoka wants to merge 1 commit intoalgd2022:mainfrom
TaigaTakaoka:main

Conversation

@TaigaTakaoka
Copy link
Copy Markdown

むずかしい


unsigned int Euclidean_gcd_rec(unsigned int x, unsigned int y){
if(x == 0) return y:
return Euclidean_gcd_rec(y % x, x):
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

;が全て:になってます.動くことを確認してから提出するようにしましょう.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants