From be83073044d65859c3288a32374902ec965bc670 Mon Sep 17 00:00:00 2001 From: ZanButt <31026525+ZanButt@users.noreply.github.com> Date: Fri, 8 Jan 2021 21:28:57 -0500 Subject: [PATCH] Update and rename lab1 to lab1_q1 --- lab1 => lab1_q1 | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) rename lab1 => lab1_q1 (78%) diff --git a/lab1 b/lab1_q1 similarity index 78% rename from lab1 rename to lab1_q1 index 60e3d68..57ca2d0 100644 --- a/lab1 +++ b/lab1_q1 @@ -1,6 +1,7 @@ #include #include - +/*Write a program to compute the sum of all numbersthatare multiples of 4,between 30 and 1000,in three different ways: +with afor loop, a while loop and a do-while loop.After each loop print the value on the screen */ int main(void) { int i,sum1=0,sum2=0,sum3=0;