代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/125257/14503312
c gvctext.c
/* Copyright (C) 1993-2002, Ghostgum Software Pty Ltd. All rights reserved.
This file is part of GSview.
This program is distributed with NO WARRANTY OF ANY KIND. No author
or dist
www.eeworm.com/read/125223/14505393
c ex72.c
#include
#define CONDITION 1
main() {
char str[]="C Programing", c;
int i=0;
while((c=str[i])!='\0') {
i++;
#if CONDITION
if(c>='a'
www.eeworm.com/read/125223/14505449
c ex16.c
#include
main() {
int i, s=0;
i=1;
do
{ /* 复合语句循环体 */
s=s+i;
i++;
} /* 循环体结束 */
www.eeworm.com/read/125218/14505779
c mystring.c
//**********************************************************************************
//杨屹 2002/08/20 第一版
//字符串操作函数
//联系方法:gdtyy@ri.gdt.com.cn(2003/07/31以前有效)
//******************************
www.eeworm.com/read/225993/14506026
c solve.c
/* GNU Chess 5.0 - solve.c - position solving code
Copyright (c) 1999-2002 Free Software Foundation, Inc.
GNU Chess is based on the two research programs
Cobalt by Chua Kong-Sian and Gazebo
www.eeworm.com/read/225956/14509433
cpp cex8_16.cpp
/*********************************
十六进制-》十进制
*********************************/
#include
void main()
{char s[5];
void c16_10(char []);
gets(s);
c16_10(s);
}
void c16_10(char s[])
www.eeworm.com/read/225913/14511209
c vecops.c
/*----------------------------------------------------------------------
File : vecops.c
Contents: some special vector operations
Author : Christian Borgelt
History : 16.09.1996 file creat
www.eeworm.com/read/225889/14512942
c keyscan.c
/*
0x18 0x14 0x12 0x11
0x28 0x24 0x22 0x21
0x48 0x44 0x42 0x41
0x88 0x84 0x82 0x81
*/
#include
#define uint unsigned int
#define uchar unsi
www.eeworm.com/read/124933/14524140
cpp 3_19.cpp
#include
#include
#define N 6
void main()
{
int a[N+1][N+1];
int row,column,i,j,k,t,p;
row=0;column=1;k=N;t=1;p=1;
do
{
for(i=1;i
www.eeworm.com/read/225696/14524678
c c04_13.c
/*while循环语句的使用*/
#include
int main()
{
int n=0; /*n完成对输入字符个数的统计*/
printf("Please input a string:\n");
while (getchar()!='\n')
n++;
printf("There are : %d characters.\n",n