can someone please help

hey,

can someone please help me to solve all this stuff, i have no idea what to do so PLEASE !!!

http://writer.zoho.com/public/gkapoor/c--

THANKS
no
i didn't say give me the answers i just want to know how to get started and etc, just some help
Well you can start with std::cout and std::cin and simple functions as this is what you will need for the first "C++" question.
Here's a link to a really useful internet based programming tool, you probably haven't heard of it if you're new to programming.

this should help with problem 1: http://tinyurl.com/4xlm5fv

get back to us when you've got some work done on problem 1 and we'll try to help.

Good luck!

-ceruleus
i done q1 so yeah... the real problem is the c++ program's
q2: the largest sum of the numbers is the sum of the two largest numbers (in 5,6,7 the largest sum is 6+7 because 6 and 7 are the two largest numbers)
the sum of all numbers is the sum of the two largest ones plus the lowest one ( 5+6+7 = (6+7) + 5 ), thus the sum of two largest numbers is the sum of all of them minus the lowest one ( 6+7 = (5+6+7) - 5 ).
now you only have to find the lowest number. since there are only 3 numbers, algorithm lowest = min( c, min(a,b) ) is fine.
Topic archived. No new replies allowed.