首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴gui在坚持的代码贴全部
#include <stdio.h>
#include <stdlib.h>
typedef struct num{
int a;
struct num* next;
}Num;

typedef struct node{
int sum;
struct num* fir;
struct num* end;
}Node;
......................
阅读全部 | 2020年3月5日 01:56
1
gui在坚持