代码搜索:杨辉三角
找到约 115 项符合「杨辉三角」的源代码
代码结果 115
www.eeworm.com/read/189162/8487459
opt 杨辉三角.opt
www.eeworm.com/read/279472/10435011
dsp 杨辉三角.dsp
# Microsoft Developer Studio Project File - Name="杨辉三角" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86) Cons
www.eeworm.com/read/279472/10435016
dsw 杨辉三角.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# 警告: 不能编辑或删除该工作区文件!
###############################################################################
Project: "杨辉三角"=".\杨辉三角.dsp"
www.eeworm.com/read/279472/10435021
cpp 杨辉三角.cpp
#include
#include
void main()
{
int i,j,a[10][10];
for(i=0;i
www.eeworm.com/read/279472/10435025
ncb 杨辉三角.ncb
www.eeworm.com/read/279472/10435030
plg 杨辉三角.plg
Build Log
--------------------Configuration: 杨辉三角 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\ADMINI~1
www.eeworm.com/read/279472/10435033
opt 杨辉三角.opt
www.eeworm.com/read/418727/10934699
txt 杨辉三角.txt
#include
#define x 13
#define y 13
main()
{
int a[x][y];
int i,j;
for(i=0,j=0;i
www.eeworm.com/read/332655/12745339
cpp 杨辉三角.cpp
#include
int c(int x,int y)
{
int z;
if((y==1)||(y==x+1)) return 1;
else z=c(x-1,y-1)+c(x-1,y);
return z;
}
main()
{
int i,j,n=13;
printf("N=");
while(n>12)
scanf("%d",&n);
for(
www.eeworm.com/read/481769/6638136