Hi, I'm trying to finish up my crab game and am currently on chapter 4 exercise 7, which says:
" Declare a variable called children (of type int).Then write an assignment statement that assigns to this variable the sum of two other variables named daughters and sons."
for this I wrote:
int children;
so far, and I've tried writing:
int children;
int sum=daughters+sons;
and
int children; int sum=daughters+sons
Can anyone please help me out with this?
