首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
2032nbsp专题
HDOJnbsp;nbsp;2032nbsp;nbsp;nbsp;杨辉三角
题目:http://acm.hdu.edu.cn/showproblem.php?pid=2032 打印杨辉三角,注意格式就好,比如空格,换行之类的 #include <stdio.h> #include <string.h> int a[35][35]; void inti(int n) { memset(a,0,sizeof(a)); a[1][1]=1; print
阅读更多...