代码搜索:while

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

代码结果 10,000
www.eeworm.com/read/408917/11365288

m jac.m

%Jacobian迭代程序 function [x,sp]=jac(a,b,n,x1) %误差 e=ones(n,1); %迭代的解向量 x2=zeros(n,1); %迭代的次数 k=0; %当误差没有满足要求时继续迭代 while norm(e,2)>1e-6 %每隔5步显示迭代结果 if (rem(k,5)==0) str=sprintf('X
www.eeworm.com/read/408881/11366290

java rowset02.java

/** * This sample exhibits the insertion, updation, deletion of a row in the * rowset and also displays the call for Synchronizing the database with the * rowset. * * Please use jdk1.2 or lat
www.eeworm.com/read/408881/11366323

java rowset03.java

/** * This sample exhibits the various duplication properties of * OracleCachedRowSet viz., * - cloning the rowset. * - copying the rowset. * - creating a shared copy of the rowset.
www.eeworm.com/read/408868/11366997

c ctest_twotager.c

//#include #include #include sbit BEEP=P2^7; unsigned char th0_f; //在中断中装载的T0的值高8位 unsigned char tl0_f; //在中断中装载的T0的值低8位 void dems(unsigned int r5);
www.eeworm.com/read/263158/11373177

txt maximum matching on general graph.txt

#include // total is the maximum cardinality,p[1..n] means a match : i p[i] #define maxn 10 int g [maxn][maxn],p[maxn],l[maxn][3],n,total,status[maxn],visited[maxn]; void upgrade(int
www.eeworm.com/read/263148/11373554

txt 广度优先遍历.txt

void traver(TD g[],int n) { int i; static int visited[M]; for(i=1;i
www.eeworm.com/read/263136/11374533

cpp 四种排序算法时间测试.cpp

#include #include #include #include #include //划分算法 int SPLIT(int x[],int low,int high) { int i = low, j = high; int temp; while (
www.eeworm.com/read/263125/11374778

c test.c

#include #define uint unsigned int #define uchar unsigned char sbit pulse =P3^0; sbit dir =P3^1; sbit enter =P2^3; uint delay=20; //脉冲频率 uint delay1=2000;
www.eeworm.com/read/408729/11375567

txt on the realization of the staircase algorithm java.txt

上楼梯算法的java实现 import java.io.*; class upstair{ public static void main(String argc[]){ int n=Integer.parseInt(argc[0]); int a[]=new int[n+1]; int count=0;
www.eeworm.com/read/408649/11378144

c lyd.c

/*=========================================================================== KS0070(44780) 16x2 字符液晶屏驱动演示程序总线方式 晓奇