lunaiwa / iwazaki

MIT License
0 stars 1 forks source link

Week #32 #32

Open lunaiwa opened 1 year ago

lunaiwa commented 1 year ago

Unit 4 Blog user computer hardware frontback deployment



Screen Shot 2023-05-01 at 12 16 31 AM

UNIT 2 -- Abstraction

Screen Shot 2023-05-01 at 12 16 47 AM

C -- Overflow errors occur when an arithmetic operation results in a value outside the range of numbers that can be represented by a fixed number of bits. UNIT 3 --Iteration

Screen Shot 2023-05-01 at 12 32 02 AM

B -- The value of val starts at 0 and is repeatedly incremented by 2, so the program calculates the sum of even integers. Inside the loop, val is incremented by 2 before being added to sum, so the first value added to sum is 2. The loop iterates 10 times, adding each intermediate value of val each time. Therefore, the program displays the sum of the even integers starting at 2 and ending at 20.