代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/256481/11996678
cpp chapter5-8.cpp
//文件名:CHAPTER5-8.cpp
#include
#include
using namespace std;
int main()
{
list coll; // list 容器 for character elements
// append elements from 'a' to 'z'
for (char c=
www.eeworm.com/read/256481/11997074
cpp chapter2-15.cpp
//文件名:CHAPTER2-15.cpp
#include
void main(int argc, char* argv[])
{
ifstream in("Sample.cpp");
while(in.get(*cout.rdbuf()));
in.ignore();
}
www.eeworm.com/read/256469/11998018
c 44blib.c
#include
#include
#include
#include
#include
#include "..\target\44b.h"
#include "..\target\44blib.h"
#include "..\target\def.h"
#inclu
www.eeworm.com/read/342749/12003507
m instfreq.m
function [fnormhat,t]=instfreq(x,t,L,trace);
%INSTFREQ Instantaneous frequency estimation.
% [FNORMHAT,T]=INSTFREQ(X,T,L,TRACE) computes the instantaneous
% frequency of the analytic signal X at time
www.eeworm.com/read/256381/12003854
cpp 八皇后2.cpp
#include
#include
int a[20];
int n;
int check(int j)
{
for(int i=0;i
www.eeworm.com/read/153768/12008091
c wordtest.c
#define MAX_LENGTH_DEFAULT 50
#define MAX_LENGTH_LIMIT 1000 \
#define PHICLONE 2654435769 \
#define NODES_PER_BLOCK 100
#define CHARS_PER_BLOCK 1000
#define out_of_mem(x) {fprintf(stderr,"%s: Memory
www.eeworm.com/read/342632/12008456
c text1.c
main()
{ int nVar1,nVar2,*pVar,nResult;
nVar1=5;
nVar2=6;
pVar=&nResult; //取地址
*pVar=nVar1*nVar2; //指针运算
while(1);
}
www.eeworm.com/read/342632/12008642
c text1.c
#include
#include
main()
{ int nVar1,nCount;
for(nVar1=0,nCount=1;nCount
www.eeworm.com/read/342632/12008799
c text1.c
int FindMax(int a,int b);
int FindMin(int a,int b);
main()
{ int nVar1,nVar2,nMax,nMin;
nVar1=3;
nVar2=5;
nMax=FindMax(3,5); //调用求最大值函数
nMin=FindMin(3,5); //调用求最小值函数
while(1);
}
int