Visual C++ .NET/Statement/while

Материал из .Net Framework эксперт
Перейти к: навигация, поиск

Create a while Loop

 

#include "stdafx.h"
#using <mscorlib.dll>
using namespace System;
int main(void)
{
    int x;
    x=0;
    while((++x)<10)
    {
        Console::WriteLine(x);
    }
    return 0;
}