Difference between revisions of "Assembly Language IF"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
(Created page with "==C#== <syntaxhighlight lang=csharp> int a = 0; do { a++ } while ( A != 99); </syntaxhighlight>")
(No difference)

Revision as of 10:34, 16 June 2017

C#

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