代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/457549/7322982
c 平方根.c
#define Epsilon 1.0E-6 /*控制解的精度*/
#include
#include
main()
{
float num,pre,this;
do
{
scanf("%f",&num);/*输入要求平方根的数*/
}while(num
www.eeworm.com/read/456386/7350045
c twodim.c
# include
void main()
{
int array[16][16];
int i, j, k, m, n;
/* 变量初始化 */
m = 1;
while(m == 1)
{
printf("请输入n(0
www.eeworm.com/read/455740/7367013
c sd_uart.c
/**************************************
File : SD_UART.C
Project : BDTRV20_MCU_V07
Description : 串口发数函数
Created : 2006.11.7
Last updata :
Author : Sunzehui
www.eeworm.com/read/455740/7367233
c sd_uart.c
/**************************************
File : SD_UART.C
Project : BDTRV20_MCU_V07
Description : 串口发数函数
Created : 2006.11.7
Last updata :
Author : Sunzehui
www.eeworm.com/read/455590/7369767
cpp p1121.cpp
#include
#include
using namespace std;
const int MAXN = 52;
int main(){
bool a[MAXN][MAXN];
bitset b[MAXN];
bitset c[MAXN];
string s;
int n;
www.eeworm.com/read/454633/7386523
cpp algo0706.cpp
void BFSTraverse(Graph G, Status (*Visit)(int v )) {// 算法7.6
// 按广度优先非递归遍历图G。使用辅助队列Q和访问标志数组visited。
QElemType v,w;
queue Q;
QElemType u;
for (v=0; v
www.eeworm.com/read/454135/7397603
log change.log
Notepad++ v4.8.1 fixed bugs and added features (from v4.7.5) :
1. Enhance Shortcut Mapper - all the commands (including plugins commands) can be assigned to a shortcut, even for the unmapped ones.
www.eeworm.com/read/453496/7418460
c fstreql.c
int fstreql(char far *str1, char far *str2)
{
while ((*str1 == *str2) && (*str1))
{
str1++;
str2++;
}
return((*str1 == NULL) && (*str2 == NULL));
}
www.eeworm.com/read/452862/7431745
pl0 test.pl0
/*这是一个测试程序*/
Program abc; /*以下是程序体*/
Integer x,y,z; /*变量声明*/
Real a,b;
Procedure ab(Var m,n:Integer; t:Real); /*过程*/
Begin
t:=n+m;
If m>n then /*条件语句*/
www.eeworm.com/read/452862/7431778
pl0 test.pl0
/* Test.PL0 */
Program abc;
Integer x,y,z;
Real a,b;
Procedure ab(Var m,n:Integer;t:Real);
Begin
t:=n+m;
If m>n then n:=m else t:=m;
While n