1. 首页
  2. 课程学习
  3. C++/C
  4. C语言实现杨辉三角

C语言实现杨辉三角

上传者: 2019-02-11 15:57:43上传 C文件 1.08KB 热度 28次
#include #define MAXSIZE 30 typedef struct { int elem[MAXSIZE]; int tou; int wei; }Shunxudui;
用户评论