《C语言》while语句和dowhie语句(7)

#include <stdio.h>

int main()
{
    int i = 0;
    while(i < 0)
    {
        i++;
    }
    
    do
    {
        i--;
    }while(i>0)
    return 0;
}
原文地址:https://www.cnblogs.com/YiShen/p/9744160.html