代码搜索:printf
找到约 10,000 项符合「printf」的源代码
代码结果 10,000
www.eeworm.com/read/256381/12003865
cpp 八皇后.cpp
#include
#include
int a[8];
int check(int n)
{
for(int i=0;i
www.eeworm.com/read/256381/12003900
cpp 深度搜索迷宫.cpp
#include
int maze[8][8]={
{0,0},
{0,1,1,1,1,0,1,0},
{0,0,0,0,1,0,1,0},
{0,1,0,0,0,1,1,0},
{0,1,0,1,1,0,1,0},
{0,1,0,0,0,0,1,1},
{0,1,0,0,1,0,0,0},
www.eeworm.com/read/256381/12003934
cpp 图着色.cpp
#include
int a[21][21]={{0},{0,0,1,1,1,1},{0,1,0,1,1,1},{0,1,1,0,1,1},{0,1,1,1,0,1},{0,1,1,1,1,0}};
int colour[21];
int n=5;
int colourkind=1;
int flag;
int main()
{
void search(int
www.eeworm.com/read/256381/12004032
cpp 深度搜索迷宫.cpp
#include
int maze[8][8]={
{0,0},
{0,1,1,1,1,0,1,0},
{0,0,0,0,1,0,1,0},
{0,1,0,0,0,1,1,0},
{0,1,0,1,1,0,1,0},
{0,1,0,0,0,0,1,1},
{0,1,0,0,1,0,0,0},
www.eeworm.com/read/342733/12004385
c main.c
#include"main.h"
//#ifndef GFMM_KK_B0
//#define GFMM_KK_B0
//#define mm 8
//#define nn 255
//#define kk 243
//#define tt 6
//#define b0 120
//#define nn_short 31
//#define kk_short 19
/
www.eeworm.com/read/342662/12007065
c os_cpu_c.c
/*
*********************************************************************************************************
* uC/OS-II
*
www.eeworm.com/read/153777/12007201
c dti.c
/*----------------------------------------------------------------------
File : dti.c
Contents: decision and regression tree induction
Authors : Christian Borgelt
History : 08.08.1997 file
www.eeworm.com/read/342596/12010149
cpp convolution model.cpp
#include
#include
#include
#define PI 3.1415926
#define f0 40
void main()
{
int i,j,k,num1,num2;
double dt,*R,wavelet[81],reflect[460],*s,*x;
FILE *
www.eeworm.com/read/342492/12016232
c tedit.c
//---------------------------------------------------------
/*
File Name: TEdit.c
Comments: This file contains the functions which
implement the text editor.
*/
//---------------------------
www.eeworm.com/read/256146/12021337
c gauss-seidel.c
#include "stdio.h"
#include "math.h"
#define N 25
#define e 0.00001
main()
{ double a[6][6]={{4,-1,0,-1,0,0},{-1,4,-1,0,-1,0},{0,-1,4,-1,0,-1},{-1,0,0,4,-1,0},{0,-1,0,-1,4,-1},{0,0,-1,0,-1,4}};