Ⅰ、简单的goto使用:
①、//代码摘下直接可以运行
#include<stdio.h>
int main()
{
int n=0;
printf(“Please input a string :\n”);
loop:if(getchar()!=’\n’)
{
n++;
goto loop;
}
printf("%d\n",n);
return 0;
}
②、结果展示:
例如:此程序是判断所输入的字符的数目,空格数也算是一个,当输入I love China!结果如下所示:
☺寄语:goto语句是比较不受限制的语句,它的随意性也导致了软件危机的发生,现在规定一般不再用goto语句,因为其太灵活,因此慎重使用;
来源:CSDN
作者:qwq hui qwq
链接:https://blog.csdn.net/weixin_43405300/article/details/103732850