输出杨辉三角(C 语言)

#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<string.h> //杨辉三角的长度 #define Length 9 //返回需要打印的字符串 //s为数组 //index为当前的行数 char* getPrintLine(int nums[],int index,char *s)
相关文章
相关标签/搜索