 
                 
                InterviewSolution
 Saved Bookmarks
    				| 1. | write a program to accept any three integer number and return the sum of these numbers (by using function)  | 
| Answer» 10 input x, y, Z20 sum = x + y + z30 average = sum / 3.040 print averageFor this you would just see a question mark to input the 3 numbers.Generally in most BASICS you could do this instead:10 input “ENTER 3 numbers SEPARATED by spaces : “; x, y, zThen you get a nice prompt for the input.Explanation:ask ur doubt also | |