-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathZOJ1243(AC).cpp
74 lines (62 loc) · 1.32 KB
/
ZOJ1243(AC).cpp
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
69
70
71
72
73
#include <stdio.h>
#include <string.h>
int main()
{
char protocol[10], host[61], str[61], path[61], port[11];
int i,n,k = 0,m;
scanf("%d",&n);
while (getchar() != '\n');
while (n -- > 0)
{
i = 0;
k++;
gets(str);
printf("URL #%d\n", k);
for (i = 0,m = 0;str[i] != ':'; i++)
{
protocol[m ++] = str[i];
}
protocol[m] = '\0';
i += 3;
for (m = 0; str[i] != '\0' && str[i] != ':' && str[i] != '/'; i++)
{
host[m ++] = str[i];
}
host[m] = '\0';
if (str[i] == '\0')
{
printf("Protocol = %s\nHost = %s\nPort = <default>\nPath = <default>\n\n",protocol,host);
}
else if (str[i] == '/')
{
for (i++,m = 0;str[i] != '\0'; i++)
{
path[m ++] = str[i];
}
path[m] = '\0';
printf("Protocol = %s\nHost = %s\nPort = <default>\nPath = %s\n\n",protocol,host,path);
}
else
{
for (i++,m = 0;str[i] != '\0'&& str[i] != '/'; i++)
{
port[m ++] = str[i];
}
port[m] = '\0';
if (str[i] == '\0')
{
printf("Protocol = %s\nHost = %s\nPort = %s\nPath = <default>\n\n",protocol,host,port);
}
else
{
for (i++,m = 0;str[i] != '\0'; i++)
{
path[m ++] = str[i];
}
path[m] = '\0';
printf("Protocol = %s\nHost = %s\nPort = %s\nPath = %s\n\n",protocol,host,port,path);
}
}
}
return 0;
}