代码搜索:while

找到约 10,000 项符合「while」的源代码

代码结果 10,000
www.eeworm.com/read/407541/11417058

cpp y 字符二维数组赋值.cpp

/**/ #include"stdio.h" //导入包含I/O函数的头文件stdio.h int main() { printf("\n\t\t 二维字符数组赋值\n"); printf("──────────────────────────\n"); char a[6][20]={"\t\t再别康桥", "\t\t ───徐志摩",
www.eeworm.com/read/407541/11417069

cpp 字符串是否纯数字串 不完整 179.cpp

#include "stdio.h" #include "string.h" void main() { printf("\n\t\t\t输入字符串,判断是否纯数字串\n"); printf("───────────────────────────────────────\n"); while(1) { char a[100],*p="0123456789",*b=a;
www.eeworm.com/read/407541/11417071

cpp 字符串 指针 作业 181.cpp

#include void main() { char a[]="123456789",*p; /*int i;*/ for(p=a+5;*p!='\0';p++){printf("%c",*p);} /*p=a+4; i=0; while() printf();*/ printf("\n"); }
www.eeworm.com/read/407541/11417076

cpp 是否英文字母 错误.cpp

#include /**/ void main() { char x; printf("\n\n"); printf(" 输入一个字符,判断是否英文字母: "); scanf("%c",&x); while(x!='1') {if(x>='A'&&x='a
www.eeworm.com/read/407541/11417079

cpp × 乘法练习 随机数.cpp

#include //导入包含I/O函数的头文件stdio.h #include //导入包含随机数函数的头文件stdlib.h #include //导入 的头文件time.h void main() { int i,x,y,z,n,m,num,num1=0,number=0; print
www.eeworm.com/read/407541/11417087

cpp 输入字符做处理.cpp

#include /**/ void main() { printf("\n\t对输入字符('.'终止,'空格'结束)做处理\n\n"); do {printf(" 输入字符: "); char c,flag; while(scanf("%c",&c),c!='.') {if(c>='a'&&c
www.eeworm.com/read/407541/11417089

cpp + c模板1.cpp

/**/ #include //导入包含I/O函数的头文件stdio.h #include //导入包含随机数函数的头文件stdlib.h #include //导入 的头文件time.h #include //导入包含数学类库函数的头文件math.h #include"stdio
www.eeworm.com/read/407541/11417090

cpp n个人报数 莫名其妙.cpp

#define nmax 50 #include void main() { int i,k,m,n,num[nmax],*p; printf("please input the total of numbers:"); scanf("%d",&n); p=num; for(i=0;i
www.eeworm.com/read/407541/11417092

cpp 数字序列跳过某数(n)继续显示.cpp

#include /**/ void main() { printf("\n\t输入0~200之间的任一整数n ,数字序列跳过n继续显示\n\n"); while(1) { int n; printf(" 输入n的值(n>200或n
www.eeworm.com/read/407541/11417105

cpp 数字序列显示在某数(n)中断.cpp

#include /**/ void main() { printf("\n\t输入0~1000之间的任一整数n ,数字序列显示在n中断\n\n"); while(1) { int n; printf(" 输入n的值(n>1000或