【好程序员笔记分享】C语言之while语句注意

ios培训------我的c语言笔记,期待与您交流!

#include <stdio.h>
int main()
{
    /*
    while (10)  //不为0 均为真 无限循环
    {
        printf("哈哈哈哈\n");
    }*/
    
    /*
    int a = 3;
    // while (a>0); 死循环
    while (a>0)
    {
        a--;
        printf("哈哈哈\n");
    }*/
    //输出显示
     哈哈哈
     哈哈哈
     哈哈哈
    // 最简单的死循环
    //while(1);
    return 0;
}

你可能感兴趣的:(程序员,include,target,blank,cccccc)