编写一个程序,在屏幕上打印杨辉三角

编写一个程序,在屏幕上打印杨辉三角。 #include<stdio.h> #include<windows.h> int main() {     printf("Please Enter<level>: "); int level = 0; scanf("%d", &level); int **yanghui = (int**)malloc(sizeof(int*)*level); int i 
相关文章
相关标签/搜索