代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/421785/10699051
c while2.c
/* while2.c -- watch your semicolons */
#include
int main(void)
{
int n = 0;
while (n++ < 3); /* line 7 */
printf("n is %d\n", n); /* line 8 */
prin
www.eeworm.com/read/421644/10718173
exe while_program.exe
www.eeworm.com/read/421644/10718211
adb while_with_if_program.adb
with Text_IO; use Text_IO;
with Ada.Float_Text_IO; use Ada.Float_Text_IO;
procedure while_with_if_program is
Price_Per_Kilo : Float; --Price of apples
Kilos_Of_Apples : Float; --A
www.eeworm.com/read/421644/10718242
adb while_program.adb
--A while statement in Ada 95
--Illustrated below is a fragment of code that uses a while statement
--to write the text message Hello 6 times
with Text_IO; use Text_IO;
procedure while_program is
www.eeworm.com/read/421644/10718565
exe while_with_if_program.exe
www.eeworm.com/read/418288/10956383
sql while_loop.sql
create or replace procedure for_loop2(
v_num1 in number,
v_num2 in number)
is
i number(3);
begin
i:=v_num1;
for i in v_num1..v_num2 loop
dbms_output.put_line(i);
end loo
www.eeworm.com/read/417008/11007315
vi while循环结构.vi
www.eeworm.com/read/457902/7315778
c do_while.c
/* do_while.c -- exit condition loop */
#include
int main(void)
{
const int secret_code = 13;
int code_entered;
do
{
printf("To enter the triskaidekapho
www.eeworm.com/read/457902/7315798
c while1.c
/* while1.c -- watch your braces */
/* bad coding creates an infinite loop */
#include
int main(void)
{
int n = 0;
while (n < 3)
printf("n is %d\n", n);
www.eeworm.com/read/457902/7315804
c while2.c
/* while2.c -- watch your semicolons */
#include
int main(void)
{
int n = 0;
while (n++ < 3); /* line 7 */
printf("n is %d\n", n); /* line 8 */
prin