代码搜索:continue
找到约 10,000 项符合「continue」的源代码
代码结果 10,000
www.eeworm.com/read/103443/15732161
cpp continue.cpp
//这个程序在本书所带软盘中,文件名为CONTINUE.CPP
//这个程序演示继续语句continue的应用。
#include
#include
void main(void)
{
char text[] = "This is a test string. It contains two setances.";
char
www.eeworm.com/read/432934/8562373
asv control_continue.asv
% control_continue.m
% continue控制语句
% 统计文本文件的行数
fid = fopen('pascal.m','r');
count=0;
num=0;
while ~feof(fid)
line = fgetl(fid);
if isempty(line) | strncmp(line,'%',1)
num=num
www.eeworm.com/read/432934/8562383
m control_continue.m
% control_continue.m
% continue控制语句
% 统计程序的行数和注释行及空行的数目
fid = fopen('pascal.m','r');
count=0;
num=0;
while ~feof(fid)
line = fgetl(fid);
if isempty(line) | strncmp(line,'%',1)
www.eeworm.com/read/181004/9277379
m continue_yanshi.m
%example3_9.m
fid=fopen('example3_9.m','r');
count=0;
while ~feof(fid)
line=fgetl(fid);
if isempty(line)|strncmp(line,'%',1)
continue
end
count=count+1;
end
disp(sp
www.eeworm.com/read/421542/10730578
jpg dlg_continue.jpg
www.eeworm.com/read/470834/6900918
jpg enter to continue.jpg
www.eeworm.com/read/458682/7291407
sh continue-nlevel.sh
#!/bin/bash
# The "continue N" command, continuing at the Nth level loop.
for outer in I II III IV V # outer loop
do
echo; echo -n "Group $outer: "
# ----------------------------------
www.eeworm.com/read/458682/7291426
example continue-n.example
# Albert Reiner gives an example of how to use "continue N":
# ---------------------------------------------------------
# Suppose I have a large number of jobs that need to be run, with
#+ any data
www.eeworm.com/read/443325/7634606
asv control_continue.asv
% control_continue.m
% continue控制语句
% 统计文本文件的行数
fid = fopen('pascal.m','r');
count=0;
num=0;
while ~feof(fid)
line = fgetl(fid);
if isempty(line) | strncmp(line,'%',1)
num=num
www.eeworm.com/read/443325/7634608
m control_continue.m
% control_continue.m
% continue控制语句
% 统计程序的行数和注释行及空行的数目
fid = fopen('pascal.m','r');
count=0;
num=0;
while ~feof(fid)
line = fgetl(fid);
if isempty(line) | strncmp(line,'%',1)