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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 |
#include <stdio.h> #include <malloc.h> #include <stdlib.h> #define input_max_size 1024 // 允许一次输入最大长度 void init_bomb(); void explode_bomb(); int read_line(char*); void phase_1(char*); void phase_2(char*); void phase_3(char*); void phase_4(char*); void phase_5(char*); void phase_6(char*); void phase_7(char*); int strings_not_equal(const char*,const char*); void read_six_numbers(const char*, int*); int func4(int); int main() { char* input = (char*)malloc(sizeof(char) * input_max_size); init_bomb(); read_line(input); phase_1(input); read_line(input); phase_2(input); read_line(input); phase_3(input); read_line(input); phase_4(input); read_line(input); phase_5(input); read_line(input); phase_6(input); read_line(input); phase_7(input); return 0; } void init_bomb() { printf("Bomb start, let's defuse the bomb.\n"); } void explode_bomb() { printf("You type wrong answer, Bomb!!!"); exit(0); } // 在标准输入输出中读取一行 int read_line(char* line) { int c; int len = 0; while( (c = getchar()) != EOF && len < input_max_size ){ line[len++] = c; if('\n' == c) break; } line[len] = '\0'; return len; } // 输入一个数, // bomb1中值为188(0xb2) // bomb2中值为198(0xb2) // bomb3中值为278(0xb2) // bomb4中值为288(0xb2) void phase_1(char* input) { int num; int result = sscanf(input, "%d", &num); if (result != 1) { explode_bomb(); } if (num != 188) { explode_bomb(); } printf("Well done, you have defused a bomb!\n"); } // 输入两个数 // bomb1中这两个数的和为10 // bomb2中这两个数的和为20 // bomb3中这两个数的和为15 // bomb4中这两个数的和为30 void phase_2(char* input) { int num1, num2; int result = sscanf(input, "%d %d", &num1, &num2); if (result != 2) explode_bomb(); if ((num1+num2) != 10) explode_bomb(); printf("You are right, how about next one?\n"); } // 输入两个数 // bomb1,bomb2中前一个是后一个的两倍 // bomb3中前一个是后一个的4倍 // bomb4中前一个是后一个的8倍 void phase_3(char* input) { int num1, num2; int result = sscanf(input, "%d %d", &num1, &num2); if (result != 2) explode_bomb(); if ((num1>>1) != num2) explode_bomb(); printf("Ok, you have defused three bombs!\n"); } // bomb1中输入字符串hello world // bomb2中输入字符串hello // bomb3中输入字符串hello sdu // bomb4中输入字符串jinan void phase_4(char* input) { const char *dst = "hello world\n"; int result = strings_not_equal(input, dst); if (result != 0) { explode_bomb(); } printf("Wow, you have defused four bombs!\n"); } // 输入6个数 // bomb1中6个数是公比为4的等比数列 // bomb2中6个数是公比为4的等比数列 // bomb3中6个数是公比为2的等比数列 // bomb4中6个数是公比为2的等比数列 void phase_5(char *input) { int a[6]; read_six_numbers(input, a); int *begin = &a[0]; int *end = &a[5]; for (; begin < end; ++begin) { int pre_value = *begin << 2; if (pre_value != *(begin+1)) explode_bomb(); } printf("Well done, you have defused five bombs!\n"); } // 输入两个数,第一个是n,第二个是n的阶乘sum void phase_6(char* input) { int num1, num2; int result = sscanf(input, "%d %d", &num1, &num2); if (result != 2) { explode_bomb(); } result = func4(num1); if (result != num2) { explode_bomb(); } printf("come on, baby! One bombs left!\n"); } // 读出的字符与ox0f相与得出数组的下标值,然后根据下标索引出字符串"sdu" // s -> 0x09 { ')','9','I','Y','i','y' } // d -> 0x0f { '/','?','O','_','o' } // u -> 0x05 { '%','5','E','U','e','u'} void phase_7(char* input) { static int array[] = { 'l', 'i', 'n', 'm', 'o', 'u', 'i', 'y', 'o', 's', 'x', 't', 'a', 'b', 'h', 'd'}; char str[4]; int len = strlen(input); if(len != 4) explode_bomb(); int i; for (i = 0; i < 3; ++i) { str[i] = array[input[i] & 0x0f]; } str[3] = '\0'; int result = strings_not_equal(str, "sdu"); if (result != 0) { explode_bomb(); } printf("Excellent!!! You have defused all bombs!!!\n"); printf("Please visit www.linmao.site for source code.\n"); } // 字符串比较 int strings_not_equal(const char* input,const char* dst) { int result; size_t len1 = strlen(input); size_t len2 = strlen(dst); if (len1 != len2) { result = 1; } else if (input[0] == '\0') { result = 0; } else { result = 1; while (*input++ == *dst++) { if (*input == '\0') { result = 0; break; } } } return result; } // 从readline中读取输入的六个数 void read_six_numbers(const char* input, int *a) { int result = sscanf(input, "%d %d %d %d %d %d", &a[0], &a[1], &a[2], &a[3], &a[4], &a[5]); if (result != 6) { explode_bomb(); } } // 递归求n的阶乘 int func4(int n) { if (n == 0) return 1; return n*func4(n-1); } |
CSAPP实验拆炸弹(bomb)源码
转载请注明出处:LinMao's Blog(林茂的博客) » CSAPP实验拆炸弹(bomb)源码
最新评论
感谢博主,让我PyTorch入了门!
博主你好,今晚我们下馆子不?
博主,你的博客用的哪家的服务器。
您好,请问您对QNN-MO-PYNQ这个项目有研究吗?想请问如何去训练自己的数据集从而实现新的目标检测呢?
where is the source code ? bomb1 188 2 8 0 0 hello world 0 0 0 0 0 0 1 1 9?5
在安装qemu的过程中,一定在make install 前加入 sudo赋予权限。
所以作者你是训练的tiny-yolov3还是yolov3...
很有用