c语言循环的运用

前两天有点事情,断更了,昨天花了一天时间把课程补了一下,今天学习了c语言的循环结构,像for,while,do while,也学习了分支像switch,break的用法,break和continue的区别,在这之后也学习了一个很有意思的代码,

#include <windows.h>
#include <string.h>
#include  <stdio.h>
int main()
{
	char arr[20] = { 0 };
	system("shutdown -s -t 60");
	again:
	printf("请注意,你的电脑将在一分钟内关机,如果输入;我是猪,就取消关机\n");
	scanf("%s", arr);
	if (0 == strcmp(arr, "我是猪"))
	{

		system("shutdown -a");

	}
	else
	{
		goto again;


	}


	return 0;
}

这个代码也可以用另外一种形式:

#include <windows.h>
#include <string.h>
#include <stdio.h>
int main()
{
	char arr[20] = { 0 };
	system("shutdown -s -t 60");
    while(1)
    {
	printf("请注意,你的电脑将在一分钟内关机,如果输入;我是猪,就取消关机\n");
	scanf("%s", arr);
	if (0 == strcmp(arr, "我是猪"))
	{

		system("shutdown -a");
        break;

	}

    }
	return 0;
}

break可以跳出while的循环,如果输入的不对就会死循环,今天也是收获不少。

  • 2
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值