-
Notifications
You must be signed in to change notification settings - Fork 1
/
p6.c
68 lines (50 loc) · 794 Bytes
/
p6.c
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include <string.h>
#include <ctype.h>
bool is_number(char *str)
{
int n = strlen(str);
for(int i=0; i<n; i++)
{
if (str[i]=='-'&& i==0 && n>1)
{
continue;
}
if (isdigit(str[i]))
{
}
else
{
return false;
}
}
return true;
}
int main(int argc, char *argv[])
{
int n = atoi(argv[1]);
int m = atoi(argv[2]);
int a = n;
int b = m;
while (is_number(argv[1]) && is_number(argv[2])&& n>=0 && m>=0)
{
if ( n!=m)
{
if (n>m)
{
n = n - m;
}
else if (n < m)
{
m = m - n;
}
}
printf("gcd(%d, %d) = %d\n", a, b, n);
return 0;
}
printf("error\n");
return 0;
}