Here is the code to write a for loop that sums only the values of x
which satisfy the given condition and stores the result in a variable named sumpart
main.m305 chars10 lines
This code initializes the sum variable sumpart
to zero and sets the values of c
and t
to 3 and 10, respectively. The for loop then iterates through all possible values of x
from 1 to 20. For each value of x
, the code checks if the given condition is satisfied. If the condition is true, the value of x
is added to the sumpart
variable. Once the loop has iterated through all possible values of x
, the resulting sum of x
values that meet the condition is stored in the sumpart
variable.
gistlibby LogSnag