代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/348000/11619114
lst da.lst
C51 COMPILER V8.02 DA 11/08/2007 15:17:12 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE DA
OBJECT MODULE PLACED IN da.O
www.eeworm.com/read/347982/11620003
c 16.c
#include
/*定义待排序数组的最大长度*/
#define MAX 100
/*———————————————————————直接插入排序——————————————————————————*/
void InsertSort(int *R,int n)
{
/* 对数组R中的元素R[1]..R[n-1]按递增序进行插入排序*/
int i,j
www.eeworm.com/read/347982/11620203
c 60.c
#include "stdio.h"
#include "string.h"
int Fmod(int x,int r,int p);
int IptoInt(char *ip);
int e,d=1,n;
int main(int argc,char *argv[])
{
int ip,fai,p=43,q=59,ch1,i=0,j=0,edch,dech=0;
www.eeworm.com/read/158402/11620976
c strcmp.c
#include "stdlib.h"
/* lexicographically compares a and b */
int strcmp(const char* a, const char* b) {
do {
if (*a < *b)
return -1;
if (*a > *b)
return 1;
}
while (*(a++) !
www.eeworm.com/read/158379/11622414
c 0_to_100.c
#include
void main ()
{
int value = 0;
while (value
www.eeworm.com/read/158379/11622435
c no_cont.c
#include
void main()
{
int counter;
printf("\nEven values\n");
for (counter = 1; counter
www.eeworm.com/read/158370/11622968
cpp 2x.cpp
// Generate a table of powers of the values 1 to 5
#include
void main()
{ float N, count, power;
cout
www.eeworm.com/read/158338/11624895
c 21.c
#include
#define N 15 /*定义最大组数*/
main()
{
int i,j,n,a[N][N];
do{
printf("\n Input n[1-12]:");
scanf("%d",&n);
}while(n
www.eeworm.com/read/158338/11625142
c 12.c
#include
main()
{
int i,sum,a;
a=2;
do
{
i=1;
sum=0;
do
{
if(a%i==0)
sum=sum+i;
i++;
}
while(i