代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/464910/7062570
cpp zp1537.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
//---------------------------------------------------------------------------
#
www.eeworm.com/read/464910/7062574
cpp zp1200_tle.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
//---------------------------------------------------------------------------
#
www.eeworm.com/read/464910/7062590
cpp zp1278_jiali.cpp
#include
void main()
{
ifstream fin("input.txt");
ofstream fout("output.txt");
int a,b,c,d,e,f,n,g,num[501],h,i;
while(fin>>b>>c>>d>>a)
{
if(a!=0)
{
b=b%d;
c=c%d;
www.eeworm.com/read/464910/7062605
cpp zp1078_b.cpp
//program p1078;
#include
int func(int m,int b)
{
int a[20];
int i,s=0;
while (m>=b)
{
s++;
a[s]=m%b;
m=m/b;
}
s++;
a[s]=m;
cout
www.eeworm.com/read/464910/7062616
cpp zp1596_w.cpp
//---------------------------------------------------------------------------
#pragma hdrstop
//---------------------------------------------------------------------------
#pragma argsused
#
www.eeworm.com/read/464930/7063092
cpp 实验1_词法分析器.cpp
#include
#include
#include
#define MAX 100
void main(){
FILE *in,*out;/*存放输入字符串和输出单词串的文件*/
int ch;
char arr[MAX];/*arr数组存放单词符号*/
char currentchar;/*curre
www.eeworm.com/read/197608/7069652
c showfile.c
/*
* File: showfile.c
* ----------------
* This program reads a file name from the user and displays
* the contents of that file on the console.
*/
#include
#include "genlib.h"
#includ
www.eeworm.com/read/242081/7073138
cpp 1205.cpp
/*1205*/
#include
#include
int main()
{
int n,w,i,j,num[2][101],a[101],b[2],sum;
char str[2][101],ch,bh;
for(i=0;i
www.eeworm.com/read/189342/7115127
c fstreql.c
int fstreql(char far *str1, char far *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
}