returning information Flashcards

(2 cards)

1
Q

what is a return statement

A

returns values back to the caller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

how do you make it return a value and print it

A

{

       Console.WriteLine (cube(5));

        Console.ReadLine();
    }
    static int cube(int num)
    {
        int result = num * num * num;
        return result;
    }
How well did you know this?
1
Not at all
2
3
4
5
Perfectly