代码搜索:杨辉三角
找到约 115 项符合「杨辉三角」的源代码
代码结果 115
www.eeworm.com/read/347211/11681882
c 杨辉三角.c
#include
#define TRUE 1
#define FALSE 0
#define MAXSIZE 50
typedef struct
{
int element[MAXSIZE];
int front;
int rear;
}SeqQueue;
void InitQueue(SeqQueue *Q)
{
www.eeworm.com/read/119188/14837659
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/119188/14837660
dsw 杨辉三角.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/119188/14837661
ncb 杨辉三角.ncb
www.eeworm.com/read/119188/14837663
plg 杨辉三角.plg
Build Log
--------------------Configuration: 杨辉三角 - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\BEIFAN~1
www.eeworm.com/read/119188/14837664
opt 杨辉三角.opt
www.eeworm.com/read/392481/8340509
cpp 杨辉三角.cpp
#include
int fact(int n);
int main(void)
{
int i,j,m,n,u;
printf("Enter u:");
scanf("%d",&u);
for(i=1;i
www.eeworm.com/read/266730/11214291
cpp 杨辉三角.cpp
#include
#include
int main()
{
using namespace std;
int a,b,x,v,i,j,n,m;
cout > n;
cout
www.eeworm.com/read/266730/11214315
obj 杨辉三角.obj
www.eeworm.com/read/266730/11214338