代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/453496/7418451
c chrcnt.c
int chrcnt(const char *string, int letter)
{
int count = 0;
while (*string)
if (*string == letter)
count++;
return(count);
}
www.eeworm.com/read/453436/7420716
c lcd.c
//使能信号,读状态下,高电平有效;写状态下,下降沿有效
#include
#include
sbit A0=P2^7;//为高电平时选择的是数据寄存器,为低电平时选择的是指令寄存器
sbit CS1=P2^5; //使能信号
sbit CS2=P2^4;
sbit LCDRW=P2^6;//高读,低写
sfr DATA=0x90;
#d
www.eeworm.com/read/453156/7425195
c uart.c
/*---------------------------------------------------------------------------------
Project : Test for 2410
Author : Kreal@163.net
Creation Date : 04-04-15
Revision
www.eeworm.com/read/453087/7427260
c nandflash_test.c
/*****************************************************************************
* nandflash_test.c: External NAND FLASH test main C entry file for NXP
* LPC23xx/24xx Family Microprocessors
www.eeworm.com/read/452952/7428846
c 时钟.c
#include
#include
#define uchar unsigned char
uchar data a,b,c,d;
//unsigned char b; //小时数据区
//unsigned char c; //分钟数据区
//unsigned char d; //秒钟数据区
uchar cod
www.eeworm.com/read/452865/7431653
lst ex.lst
C51 COMPILER V8.02 EX 10/16/2008 11:44:14 PAGE 1
C51 COMPILER V8.02, COMPILATION OF MODULE EX
OBJECT MODULE PLACED IN ex.O
www.eeworm.com/read/452865/7431657
c ex.c
//****************Copyright (c)*************
// 成都麟鑫科技有限责任公司
// http://www.linxinpro.com
//******************************************
/*2007年11月19日
矩阵键盘试验及数码管移位显示试验
按键输入0~F的数
www.eeworm.com/read/452862/7431700
c t.c
main()
{
int i,j;
char c[10];
float f;
i=3;
j=4;
while(i>0)
{
if(i
www.eeworm.com/read/452827/7432533
cpp 排课最新版.cpp
#include
#include
#include
#include
#include
#include
#pragma warning(disable : 4786)
using namespace std;
class BadInput{
public:
www.eeworm.com/read/452718/7434222
java fillfirst.java
/*
* This file is part of MUSoSu.
*
* MUSoSu is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Fou