mirror of
https://github.com/TheAlgorithms/C.git
synced 2026-05-17 23:38:33 +00:00
formatting source-code for 5bba04b671
This commit is contained in:
@@ -25,7 +25,7 @@ int main()
|
||||
|
||||
while (j <= n)
|
||||
{
|
||||
if ((j & 1) == 0) // can also use(j%2 == 0)
|
||||
if ((j & 1) == 0) // can also use(j%2 == 0)
|
||||
sum += j;
|
||||
temp = i;
|
||||
i = j;
|
||||
|
||||
Reference in New Issue
Block a user