05 2021 档案
摘要:1 #include <stdio.h> 2 #include <stdlib.h> 3 #include <string.h> 4 #define LEN 40 5 int main(int argc, char const *argv[]) 6 { 7 FILE *in, *out; 8 cha
阅读全文
摘要:1 #include <stdio.h> 2 #include <math.h> 3 #include <string.h> 4 int i = 9; 5 void a() 6 { 7 i = 90; 8 printf("%d ", i); 9 } 10 int main(void) 11 { 12
阅读全文
摘要:#include <stdio.h> int main(void) { int n = 8; printf("%d %p\n", n, &n); for (int n = 1; n < 3; n++) { printf("%d %p\n", n, &n); } printf("%d %
阅读全文
摘要:int main(void) { for (int i = 0; i < 2; i++) { to:printf("%d ", i); } goto to; return 0; }
阅读全文
摘要:int question15(char *string) { bool minus_punctuation = false; int sum = 0; if (*(string + 0) == '-') { minus_punctuation = true; string++; } while (*
阅读全文
摘要:Let's Talk About...Burnout starts to return to normal || decreasing sense of accomplishment. || emotion exhaustion || have to have || would you say th
阅读全文
摘要:if (!isspace(*string) && !check) { words++; check = true; } if (isspace(*string) && check) { check = false; }
阅读全文
浙公网安备 33010602011771号