Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upnew file to string directory #1981
Conversation
uploaded Piglatin game in java
import java.util.Arrays; | ||
public class piglatinGame | ||
{ | ||
public static void main(String[] args) |
AkMo3
Oct 30, 2020
main method should not used. Create function and make it public so as to access.
main method should not used. Create function and make it public so as to access.
@@ -0,0 +1,34 @@ | |||
import java.util.Arrays; | |||
public class piglatinGame | |||
{ |
AkMo3
Oct 30, 2020
Add javadoc comments. You can refer to Java-Documentation Comments. Also refer to this file to analyse the format of code DecimalToAnyBase.java
Add javadoc comments. You can refer to Java-Documentation Comments. Also refer to this file to analyse the format of code DecimalToAnyBase.java
{ | ||
try | ||
{ | ||
if (args[0] == null ) |
AkMo3
Oct 30, 2020
Use scanner or bufferedReader class instead of {args} command line input may not be given, and directly function may be called.
Use scanner or bufferedReader class instead of {args} command line input may not be given, and directly function may be called.
} | ||
|
||
String s = args[0]; | ||
s = s + "-ay" ; |
AkMo3
Oct 30, 2020
•
This is not piglatin. Read the concept of piglatin carefully.
In piglatin you find the first vowel and then shift all the words in left of it at the end and then add "ay". Also the word may be in caps so "AY" may be used in place of "ay"
This is not piglatin. Read the concept of piglatin carefully.
In piglatin you find the first vowel and then shift all the words in left of it at the end and then add "ay". Also the word may be in caps so "AY" may be used in place of "ay"
Also, you need to send to PR to development branch not master branch |
uploaded Piglatin game in java
Describe your change:
References
Checklist:
Fixes: #{$ISSUE_NO}
.