代码搜索:do-while
找到约 169 项符合「do-while」的源代码
代码结果 169
www.eeworm.com/read/222917/4815370
phpt 027.phpt
--TEST--
Testing do-while loop
--POST--
--GET--
--FILE--
--EXPECT--
321
www.eeworm.com/read/431198/8703167
java help2.java
/*
Project 3-2
An improved Help system that uses a
a do-while to process a menu selection.
*/
class Help2 {
public static void main(String args[])
throws java.io.IOExc
www.eeworm.com/read/448182/7538530
c l3-8.c
/**********************************************************************
程序名称:L3-8.c
程序功能:理解、掌握do-while 语句的使用方法
程序作者:张三
创建时间:2008-3-28
*************************************************************
www.eeworm.com/read/106490/6192503
java dowhilecount.java
//==============================================================
// DoWhileCount.java - Demonstrates do-while statements
//
// Java学习源代码检索系统 Ver 1.0 20031015 免费正式版
// 版权所有: 中国IT认证实验室(www.ChinaITLa
www.eeworm.com/read/101101/15852546
java dowhilecount.java
//==============================================================
// DoWhileCount.java - Demonstrates do-while statements
//
// Java学习源代码检索系统 Ver 1.0 20031015 免费正式版
// 版权所有: 中国IT认证实验室(www.ChinaITLa
www.eeworm.com/read/292139/8376002
java sum_dowhile.java
//【例2.10】 用do-while语句求累加和并显示计算公式。
public class Sum_dowhile
{
public static void main(String args[])
{
int i=1,n=10,s=0;
do
{
s += i;
www.eeworm.com/read/432289/8613776
cpp guess2.cpp
//: C03:Guess2.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// The guess program using do-while
#include
www.eeworm.com/read/284998/8877402
cpp guess2.cpp
//: C03:Guess2.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// The guess program using do-while