diff --git a/client-c.txt b/client-c.txt index d9a1860..1f9aa30 100644 --- a/client-c.txt +++ b/client-c.txt @@ -1,4 +1,10 @@ # Client Task C # # Add your pseudocode to this file below this line: # # ------------------------------------------------- # - +START +Set variable 'i' to 2 +WHILE 'i' is less than or equal to 50 + Print 'i' + Increment 'i' by 2 +END WHILE +END