代码搜索:while
找到约 10,000 项符合「while」的源代码
代码结果 10,000
www.eeworm.com/read/410432/11287634
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/410432/11287673
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/410432/11287685
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/406034/11450653
txt c_while.txt
www.eeworm.com/read/406034/11450684
exe c_while.exe
www.eeworm.com/read/406034/11450739
mes c_while.mes
www.eeworm.com/read/341401/12086464
vbp while_wend.vbp
Type=Exe
Form=While_Wend.frm
IconForm="While_Wend"
Startup="While_Wend"
HelpFile=""
Command32=""
Name="工程1"
HelpContextID="0"
CompatibleMode="0"
MajorVer=1
MinorVer=0
RevisionVer=0
AutoInc
www.eeworm.com/read/341401/12086466
frm while_wend.frm
VERSION 5.00
Begin VB.Form While_Wend
Caption = "求阶乘的和"
ClientHeight = 1470
ClientLeft = 60
ClientTop = 345
ClientWidth = 3270
LinkTopic