Mar-09-2017, 05:36 PM
Write a programm which sums up the first 100 even numbers. + comments
accumulator pattern
|
Mar-09-2017, 05:36 PM
Write a programm which sums up the first 100 even numbers. + comments
Mar-09-2017, 06:00 PM
Show us what have you done so far.
Mar-09-2017, 10:26 PM
x=2+4+6+8+[....]+198+200Filling the dots is left as an exercise to the reader. If you are mathematically inclined: x=2*((100*101)*2)
Unless noted otherwise, code in my posts should be understood as "coding suggestions", and its use may require more neurones than the two necessary for Ctrl-C/Ctrl-V.
Your one-stop place for all your GIMP needs: gimp-forum.net
Mar-09-2017, 11:20 PM
Somehow I doubt that it will be accepted as a satisfactory solution of programming homework (even if OP's name is Carl Gauss). The assignment is not too precise, so there is a question of allowing zero.
Last * probably means /.
Mar-10-2017, 08:18 AM
(Mar-09-2017, 11:20 PM)zivoni Wrote: The assignment is not too precise, so there is a question of allowing zero. it gets the same sum, either way.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Mar-10-2017, 08:48 AM
(Mar-09-2017, 11:20 PM)zivoni Wrote: Somehow I doubt that it will be accepted as a satisfactory solution of programming homework (even if OP's name is Carl Gauss). The assignment is not too precise, so there is a question of allowing zero.A philosophy teacher would have excuses, but not a programming teacher. Quote:Last * probably means /.Yes
Unless noted otherwise, code in my posts should be understood as "coding suggestions", and its use may require more neurones than the two necessary for Ctrl-C/Ctrl-V.
Your one-stop place for all your GIMP needs: gimp-forum.net
I was thinking about some "pragmatic" teacher - one who have just explained for (or while) loop in a class and expects to see it used in the following homework.
Quote:The right expression is a sum of one more number than the left one.it gets the same sum, either way. But yes, it was nitpicking. Anyone who is able to sum numbers from 1 to 100 should be able to sum numbers from 0 to 99. EDIT: I have misunderstood Ofnuts' comment - it was about zero, not about accepting solution given by a single expression. And he is right, it shouldnt matter from the programming point of view.
Mar-10-2017, 10:26 AM
(Mar-10-2017, 09:36 AM)zivoni Wrote: I was thinking about some "pragmatic" teacher - one who have just explained for (or while) loop in a class and expects to see it used in the following homework. No, your first understanding was the correct one :). If you teach computer science you have to be accurate. What the specs don't forbid is allowed. Nothing should be "implicit". A long time ago I worked on a proposal for a device automatically calling for assistance in case of a car crash. The car speed was sampled at 2kHz or so, so the acceleration was the difference between two consecutive samples and the "crash" itself was detected when the average of the last 200 accelerations was above some value. Computing this fast enough wasn't that easy on the available microcomputers of the era. Until you figure out that the average of all the deltas is just the last value minus the first value divided by the number of samples.
Unless noted otherwise, code in my posts should be understood as "coding suggestions", and its use may require more neurones than the two necessary for Ctrl-C/Ctrl-V.
Your one-stop place for all your GIMP needs: gimp-forum.net
Mar-10-2017, 11:11 AM
OK :)
Yes, OP's demand for program and comment is fullfilled by print(50*202) # sums even numbers from 2 to 200But if his post is not a precise transcription of homework specs, then there is possibility that OP gets what he asks for, not what he wants. And without his cooperation its rhetorical question. |
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Accumulator/looping problem | student8 | 5 | 5,375 |
Oct-16-2017, 01:24 AM Last Post: ichabod801 |