代码搜索:do-while
找到约 169 项符合「do-while」的源代码
代码结果 169
www.eeworm.com/read/237119/13977788
txt index.txt
目 录
译者序
序
第1版序
前言
第1章 基本概念
1.1 入门
1.2 变量与算术表达式
1.3 for语句
1.4 符号常量
1.5 字符输入输出
1.5.1 文件复制
1.5.2 字符计数
1.5.3 行计数
1.5.4 单词计数
1.6 数组
1.7 函数
1.8 变元
www.eeworm.com/read/105305/15670943
txt index.txt
目 录
译者序
序
第1版序
前言
第1章 基本概念
1.1 入门
1.2 变量与算术表达式
1.3 for语句
1.4 符号常量
1.5 字符输入输出
1.5.1 文件复制
1.5.2 字符计数
1.5.3 行计数
1.5.4 单词计数
1.6 数组
1.7 函数
1.8 变元—按值调用
1.9 字符数组
www.eeworm.com/read/397649/8031130
java forwhiletest.java
/**
* Java语言实验参考程序
* Company 北京师范大学计算机系
* @author 孙一林
* @version 1.0
*/
import java.io.*;
public class ForWhileTest {
public static void main(String[] args) throws IOException
www.eeworm.com/read/219130/14893458
cpp do-while循环语句的翻译程序设计(lr方法、输出三地址表示).cpp
#include "stdio.h"
#include "stdlib.h"
#include "string.h"
#include "conio.h"
#include
#include "iostream.h"
#include
#define N 50
char* WEN[]={"6","Zd{E}w(T)","EAE",
www.eeworm.com/read/166569/10015958
cpp tut2-1.cpp
// *****************************************
// cplusplus language tutorial
// section 2.1
//
// "Guess the number"
// Shows:
// - do-while
// - if-else
//
www.eeworm.com/read/468399/6989473
cpp tut2-1.cpp
// *****************************************
// cplusplus language tutorial
// section 2.1
//
// "Guess the number"
// Shows:
// - do-while
// - if-else
//
www.eeworm.com/read/249482/4451152
dat errortc31.dat
出错信息: Do statement must have while
中文解释: do-while语句中缺少while部分
www.eeworm.com/read/298155/3875305
dat errortc31.dat
出错信息: Do statement must have while
中文解释: do-while语句中缺少while部分
www.eeworm.com/read/240680/13205489
txt readme.txt
Introduction
=========
This is an implementation of a simple language "C--" that implements a small subset of C. The following are supported:
- If statements
- Loops (while, do-while, for)
- I
www.eeworm.com/read/37274/1070630
c ch04_12.c
#include
#include
int main()
{
int h=10,day=0;
do /*do-while循环开始*/
{
day++;