Do While_1.5

#include "stdio.h"
int main (void)
{
    int digit=0;

    do
    {
        printf("%d\n",digit++);
    }
    while(digit<=9);
    system("pause");
}

0 comments:

Post a Comment