代码

#include 
#include 

int main()
{
    for (int i = 0; i <= 100; i++)
    {
        printf("\rPercent complete: %3d%%", i);
        fflush(stdout);
        sleep(1);
    }
    return 0;
}

你可能感兴趣的:(代码)