Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Root825384y// Derp
derp derp(int derpc, derp* derp[]) {
derp;
/* derp */
while(derp) derp();
derp derp;
return derp;
} -
Though DevRant is not as strict as Stackoverflow, it is still not a place to solve your homework.
-
If (Math.random() <0.5) {
System.out.println("Player A wins");
}
else {
System.out.println("Player B wins");
}
A game of throwing dice is played between two players in which each player throws a dice unless his adds up to 20 . A player is declared "winner" with the minimum number of throws. write a java program to perform the task given below. USING STRING MANIPULATION
question