Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
hanghoo authored Dec 13, 2020
1 parent 2e53d03 commit 3b5a0e6
Show file tree
Hide file tree
Showing 9 changed files with 400,052 additions and 0 deletions.
Binary file added a.out
Binary file not shown.
23 changes: 23 additions & 0 deletions forbidden.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
#include <stdio.h>

/*don't change*/
#define NUMBER 400000
#define LENGTH 7
int main()
{ FILE * fp; char c1,c2,c3,c4,c5; int i1, i2, i3, i4, i5;
fp = fopen("forbidden.txt", "w");
fprintf(fp, "%d %d\n", LENGTH, NUMBER );
for(i1=0; i1 < 20; i1++)
for(i2=0; i2 < 10; i2++)
for(i3=0; i3 < 10; i3++)
for(i4=0; i4 < 10; i4++)
for(i5=0; i5 < 20; i5++)
{ c1 = (char) (( (int)'b') + i1);
c2 = (char) (( (int)'a') + i2);
c3 = (char) (( (int)'b') + i3);
c4 = (char) (( (int)'a') + i4);
c5 = (char) (( (int)'b') + i5);
fprintf(fp, "a%c%c%c%c%ca\n",c1,c2,c3,c4,c5 );
}
return(1);
}
Binary file added forbidden.out
Binary file not shown.
Loading

0 comments on commit 3b5a0e6

Please sign in to comment.