Question: Define a function FindWinningPrize ( ) that takes one integer parameter as the lottery number, and returns the prize as an integer. The prize is

Define a function FindWinningPrize() that takes one integer parameter as the lottery number, and returns the prize as an integer. The prize is returned as follows:
If the lottery number is 199 or 258, then the prize is $12500.
If the lottery number is 316 or 890, then the prize is $6000.
Otherwise, the prize is $0.
Ex: If the input is 199, then the output is:
12500
#include
/* Your code goes here */
int main(void){
int number;
scanf("%d", &number);
printf("%d
", FindWinningPrize(number));
return 0;
}

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!