From bf0d373fe5d83913a1d364a487e3a03cb2b31c1f Mon Sep 17 00:00:00 2001 From: cmsmith890 <122848103+cmsmith890@users.noreply.github.com> Date: Thu, 3 Oct 2024 00:46:31 -0400 Subject: [PATCH] Update client-c.txt --- client-c.txt | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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