1231杨辉三角,C语言
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n; int a[100][100]={1}; while(scanf("%d",……
一维数组解决,嘿嘿嘿,我就爱写点超级简单好理解的题解
摘要:解题思路:解题思路啊,我就是当初想多了其他前辈们解决其他题目的想法而已,size其实可以没有来着这题,我一直就是想要用一维数组解决而已思路就下面这个啊/*1 a[0]=11 1 a[0]=1 a[……
题解 1231: 菜鸟解法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n,a[30][30]; while(scanf("%d",&n)==1){ ……
----------------杨辉三角------------woc--------杨辉三角-----------woc---------卧槽
摘要:解题思路:无注意事项:无参考代码:#include <stdio.h>
int main() {
int n;
while (~scanf("%d", &n)){
int nu……
1231: 杨辉三角
摘要:```cpp
#include
using namespace std;
int a[1000][1000];
int main() {
int n;
while(cin>>n) {……
杨辉三角(Java)
摘要:解题思路:注意事项:参考代码:package arrLast;
//题目 1231: 杨辉三角
import java.util.Scanner;
public class t_1231 {
……
1231: 杨辉三角
摘要:```
#include
using namespace std;
const int N=110;
int a[N][N];
int main(){
int n;
while(cin……
1231: 杨辉三角
摘要:```
#include
using namespace std;
const int N=110;
int a[N][N];
int main(){
int n;
while(ci……