代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/426021/10293764
txt 尾部的星号全部删除.txt
while(*a!='\0')
a++;
a--;
while(*a=='*')
a--;
*(a+1)='\0';
www.eeworm.com/read/480844/6662474
txt lesson3.txt
Lesson 3: Loops
This is the third installment of the Lessons in C programming tutorials created by me,
Alexander. In this lesson I will cover loops. Loops basically do what it sounds like
www.eeworm.com/read/407541/11416992
cpp 1^2+2^2+3^2+…+n^2的值 dowhile-dowhile.cpp
#include /**/
void main()
{
printf("\n\t求1^2+2^2+…+n^2(n
www.eeworm.com/read/326053/13169278
cpp 程序8.08:用while循环求一个整数的阶乘.cpp
/* 程序8.8:用while循环求一个整数的阶乘.cpp */
#include //包含头文件
using namespace std; //使用名字空间std
class Loops //声明一个类Loops
{
private: //声明私有成员变量
int iNum; //声明整型变量
long iAccumulate; //声明长
www.eeworm.com/read/407541/11417103
cpp 1+3+5+…+n的所有奇数和 while-for嵌套.cpp
#include /**/
void main()
{
printf("\n\t求1+3+5+…+n (n
www.eeworm.com/read/152920/12074281
cpp 程序8.08:用while循环求一个整数的阶乘.cpp
/* 程序8.8:用while循环求一个整数的阶乘.cpp */
#include //包含头文件
using namespace std; //使用名字空间std
class Loops //声明一个类Loops
{
private: //声明私有成员变量
int iNum; //声明整型变量
long iAccumulate; //声明长
www.eeworm.com/read/127767/14337043
txt e516. preventing expansion of entity references while parsing an xml file.txt
By default, entity references are expanded during parsing. This example demonstrates how to leave the entity references in the DOM document
Note: The default parser in J2SE 1.4 expands entity refere