【秋暝的C语言练习代码】1~10

"本文介绍了C语言中常见的循环结构,包括for、while、do...while循环,以及如何使用goto进行流程控制。示例代码展示了各种循环的用法,包括简单的打印输出和死循环的实现,并在每个示例中使用了`system("pause")`来暂停程序,便于观察执行结果。"

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

a1 简单的C语言代码

#include <stdio.h>
int main()
{
    printf("Hello!!!");
    return 0;
}//程序可能执行完后进程就结束了

 a2 暂停

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //暂停
    printf("Hello, World!\n");
    system("pause");
    return 0;
}

a3 for循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //循环
    printf("Hello!!!");
    for(int i=0;i<10;i++){
        printf("%d",i);
    }
    system("pause");
    return 0;
}

a4 while循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //循环
    int a=10;
    while(a>0){
        a--;
        printf("%d",a);
    }
    system("pause");
    return 0;
}

 a5 do{...}while循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //循环
    int a=10;
    do{
        a--;
        printf("%d",a);
    }while(a>0);
    system("pause");
    return 0;
}

 a6 goto跳转

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //死循环
    AAA:
    printf("A");
    goto AAA;
    system("pause");
    return 0;
}

a7 for(;;) 死循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //死循环
    for (;;)
        printf("A");
    system("pause");
    return 0;
}

a8 while(1) 死循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //死循环
    while (1)
        printf("A");
    system("pause");
    return 0;
}

a9 do{...}while(1)死循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //死循环
    do
    {
        printf("A");
    } while (1);
    system("pause");
    return 0;
}

a10 do{...}while(0) 一次循环

#include <stdio.h>
#include <stdlib.h>
int main()
{
    //一次循环
    do
    {
        printf("A");
    } while (0);
    system("pause");
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

一只秋暝

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值