代码搜索:printf

找到约 10,000 项符合「printf」的源代码

代码结果 10,000
www.eeworm.com/read/336933/12407011

c 13kfwt0.c

#include "stdio.h" #include "13kfwt.c" main() { int i; double p[8],x[8]; for (i=0; i
www.eeworm.com/read/336856/12412735

c 4muav0.c

#include "stdio.h" #include "4muav.c" #include "4trmul.c" main() { int i,j; static double a[4][3]={ {1.0,1.0,-1.0},{2.0,1.0,0.0}, {1.0,-1.0,0.0},{-1.0,
www.eeworm.com/read/336856/12412756

c 4rinv0.c

#include "stdio.h" #include "4rinv.c" #include "4trmul.c" main() { int i,j; static double a[4][4]={ {0.2368,0.2471,0.2568,1.2671}, {1.1161,0.1254,0.13
www.eeworm.com/read/336856/12412759

c 4maqr.c

#include "math.h" #include "stdio.h" int maqr(a,m,n,q) int m,n; double a[],q[]; { int i,j,k,l,nn,p,jj; double u,alpha,w,t; if (m
www.eeworm.com/read/148867/12419015

c os_cpu_c.c

/* ********************************************************************************************************* * uC/OS-II *
www.eeworm.com/read/148811/12424552

txt 最小二乘法直线算法.txt

[转载]最小二乘法数据处理程序 main () { int n,i,flag2; char flag1='y'; float ar[50],br[50],x,y,xe,ye,xye,xxe,sx,sy,sxy,sxx,a,b; printf ("\n欢迎使用最小二乘法数据处理程序\n"); printf ("\n说明:本程序运行结果保留小数点后三位\n"); fo
www.eeworm.com/read/250206/12424851

cpp kmean.cpp

// kmean.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include #include typedef struct sample { float x; float y;
www.eeworm.com/read/148732/12432275

c glouton.c

/*** Algorithme Glouton ***/ #include #include /*** Table p(price) and Table w(weight) ***/ /*** m is the number of total weights ***/ /*** n is the numberof tota
www.eeworm.com/read/250053/12439280

c exp04_11.c

#include #define STARTNUM 3 #define ENDNUM 100 main() { int m,k,i,n=0; for(m=STARTNUM;m
www.eeworm.com/read/250053/12439341

c exp03_09.c

#include #include main() { char ch1,ch2; ch1=getchar(); ch2=getchar(); printf("ch1=%c,ch2=%c\n",ch1,ch2); }