Do While_1.2

#include "stdio.h"
int main (void)
{
    int i=1;
    do
    {
        printf("%d\n",i);
        i++;
    }
    while (i<10);
    system("pause");
    return 0;
}

0 comments:

Post a Comment