Assembly Language IF

From TRCCompSci - AQA Computer Science
Revision as of 10:34, 16 June 2017 by Admin (talk | contribs) (Created page with "==C#== <syntaxhighlight lang=csharp> int a = 0; do { a++ } while ( A != 99); </syntaxhighlight>")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

C#

int a = 0;
do
{
    a++
}
while ( A != 99);