代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/447026/7560108
cpp subsetsum.cpp
#include
#include
int len; // 输入长度.
int sum; // 和.
int *data; // 数据.
char *output; // 所求子集元素,与输入数据对应,'Y'为取.
// 获取输入.
void GetInput(){
int i;
printf("输入集合个数: "
www.eeworm.com/read/447019/7560482
t identity2.t
{
int i; int j; float[10][10] a;
i = 0;
while(true) {
j = 0;
while(true) {
a[i][j] = 0.0;
if( j >= 10 ) break;
}
if( i >= 10 ) break;
}
i = 0;
while(true) {
a[i][i] = 1.0;
if(
www.eeworm.com/read/447004/7560921
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
sbit P10 = P1^0; //头文件中没有定义的IO就要自己来定义了
sbit P11 = P1^1;
sb
www.eeworm.com/read/447004/7561159
c main.c
#define uchar unsigned char //定义一下方便使用
#define uint unsigned int
#define ulong unsigned long
#include //包括一个52标准内核的头文件
char code dx516[3] _at_ 0x003b;//这是为了仿真设置的
sbit P10=P1^
www.eeworm.com/read/446874/7563642
c sys_iic.c
/****************************************************************************
Copyright (c) 深圳市民德电子科技有限公司 http://www.szminde.cn
文件名称:sys_IIC.c
版本号: 1.0
日期: 2005-05-25
说明: 此文件包含对ES-TA
www.eeworm.com/read/446384/7580516
cpp unrlezip.cpp
#include
#include
#include
#include
#include
using namespace std;
ofstream fout;
ifstream fin;
int cmp(unsigned char *p1, unsigned char
www.eeworm.com/read/446379/7580553
c mf.c
//用31来模拟串口,向PC发送数据
//波特率4800 bit/s 每一位208us
#include
#define uchar unsigned char
uchar c1;//分别用来存储K1-K4
sbit led=P1^0;
sbit k1=P2^4;//按钮K1
sbit k2=P2^5;//按钮K2
sbit tx=P3^1;//模拟串
www.eeworm.com/read/446236/7583395
cpp nbtheory.cpp
// nbtheory.cpp - written and placed in the public domain by Wei Dai
#include "pch.h"
#include "nbtheory.h"
#include "modarith.h"
#include
#include
NAMESPACE_BEGIN(Crypto