Fork me on GitHub

about

About me

Nick Name : CC

Email: [Please indicate your intention]

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
#include <stdio.h>

int sendEMailToAddress (void) {
int count = 10;
int numbers[10] = {0, 1, 2, 3, 4, 5, 6, 7, 8, 9};

for (int i = 0; i < count; i++) {
if (i < 2) {
printf("%d", numbers[2]);
} else if (i == 2){
printf("%d", numbers[count -1]);
} else if (i < 6 || i == 8) {
if (i == 5) {
printf("%d", numbers[1] - 1);
} else {
printf("%d", numbers[1]);
}
} else if (i < 7) {
printf("%d", numbers[count - 2]);
} else if (i < 8) {
printf("%d", numbers[count - 4]);
} else {
printf("%d", numbers[count - 3]);
}
}

printf("@qq.com");

return 0;
}

Github : https://github.com/ccworld1000

Site : https://ccworld1000.github.io