L

Linisdjxmk

#689281

这名用户暂未设置签名。

发帖
5
文章
0
互动
1
陶片
0
获赞
0
收藏
0

历史用户名外显

追踪最近的用户名外显变动记录。

  1. Linisdjxmk
    最早追溯到 2025/11/04最后捕获于 2025/11/04
  2. Linisdjxmk
    最早追溯到 2024/11/03最后捕获于 2024/11/03
  3. Linisdjxmk
    最早追溯到 2024/09/24最后捕获于 2024/09/24

时间线

最近的文章、讨论、云剪贴板与社区记录

  1. 发起讨论
    求助RE,本地调试无内存错误

    ```c #include #include #include char *getlinex(void) { //getchar(); char * x = malloc(sizeof(char) * 1000); char c; int t = 0; while((c = getchar()) != EOF && c…

    回复 0参与人数 1
  2. 发起讨论
    40分,求助

    ```c #include #include #include char ctou(char x) { if((x >= 'A' && x <= 'Z') || x == ' ') return x; else return 'A' - 'a' + x; } char * toupper2(char *x) { int…

    回复 0参与人数 1
  3. 回复讨论

    在讨论无法使用getchar正常读取输入回复:

    前面还有一个输入,完整版是这样的: ```c char input0[12]; scanf("%s",input0); getchar(); char * input = malloc(sizeof(char)); int end = 0; char x; while((x = getchar()) != '\n')…
  4. 发起讨论
    无法使用getchar正常读取输入

    ```c char * input = malloc(sizeof(char)); int end = 0; char x; while((x = getchar()) != '\n') { input[end] = x; input = realloc(input,sizeof(char) * (end + 3));…

    回复 1参与人数 1
  5. 发起讨论
    求助,80分

    ```c #include int main() { int n; scanf("%d",&n); int c = 0; double xn = (double)n; if(n 1) { xn /= 2; c++; } printf("%d\n",c); } ```

    回复 3参与人数 3
  6. 发起讨论
    求助,只有10分

    ```c #include #include struct timeans{ int hour; int minans; }; struct timeans *minute_mi(int src, int tomin) { int k = src - tomin; if(k >= 0) { struct timeans…

    回复 0参与人数 1
已经到最早的记录