NO.24 ---- C语言入门练习19

#define _CRT_SECURE_NO_WARNINGS 1 #include <stdio.h> #include <stdlib.h> //#define ROW 5 // //int arr[ROW][ROW]; // 在屏幕上打印杨辉三角。 // 1 // 1 1 // 1 2 1 // 1 3 3 1 void yanghui(int n) { int arr[100][100];
相关文章
相关标签/搜索