代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/202389/5051874
uv2 while.uv2
### uVision2 Project, (C) Keil Software
### Do not modify !
Target (Target 1), 0x0000 // Tools: 'MCS-51'
Group (Source Group 1)
File 1,1,
Options 1,0,0 // Target 'T
www.eeworm.com/read/192230/5159622
exp while-stepping.exp
# Copyright (C) 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#
www.eeworm.com/read/192230/5159633
exp while-dyn.exp
# Copyright (C) 1998 Free Software Foundation, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
#
www.eeworm.com/read/178760/5313589
c scott-while.c
/*
*/
#include
unsigned int aint0 = 0;
unsigned int aint1 = 0;
unsigned char achar0 = 0;
unsigned char achar1 = 0;
void
while1 (void)
{
unsigned char i = 10;
do
{
achar0+
www.eeworm.com/read/168845/5432976
cpp while_tests.cpp
/*=============================================================================
Phoenix V1.0
Copyright (c) 2002-2003 Martin Wille
Use, modification and distribution is subject to the
www.eeworm.com/read/347649/3164652
txt fib_while.txt
0 1 1 2 3 5 8 13 21 34 55 89 144 233 377 610 987 1597 2584 4181
www.eeworm.com/read/347649/3164653
java fib_while.java
public class Fib_while
{
public static void main(String args[])
{
final int MAX = 20;
int i=0,j=1,k=0;
while (k
www.eeworm.com/read/347649/3164675
java sum_while.java
//用while语句实现求1到10之和.
class Sum_while
{
public static void main(String args[])
{
int i=1,n=10,s=0;
while (i