InterviewSolution
Saved Bookmarks
| 1. |
WAP in java to find out the cost of Five book when 12 book cost is Rs. 1280. |
|
Answer» 533.34Explanation:CLASS pjava{ PUBLIC void COMPUTE() { int c1=0; int c5=0; c1=1280/12; c5=c1*5; System.out.println(c5); }//END of function}//end of class |
|