Created
July 5, 2014 19:55
-
-
Save AlexTalker/19e106877a287a305439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public class Numbers{ | |
| public static void main(String[] args){ | |
| String[] numbers = {"один", "два", "три", "четыре", "пять", "шесть", "семь", "восемь", "девять"}; | |
| for(String arg: args){ | |
| for(String number: numbers){ | |
| System.out.print(arg+ " " + number + ","); | |
| } | |
| System.out.print("\n"); | |
| } | |
| } | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| пятьдесят один,пятьдесят два,пятьдесят три,пятьдесят четыре,пятьдесят пять,пятьдесят шесть,пятьдесят семь,пятьдесят восемь,пятьдесят девять, | |
| шестьдесят один,шестьдесят два,шестьдесят три,шестьдесят четыре,шестьдесят пять,шестьдесят шесть,шестьдесят семь,шестьдесят восемь,шестьдесят девять, | |
| семьдесят один,семьдесят два,семьдесят три,семьдесят четыре,семьдесят пять,семьдесят шесть,семьдесят семь,семьдесят восемь,семьдесят девять, | |
| восемьдесят один,восемьдесят два,восемьдесят три,восемьдесят четыре,восемьдесят пять,восемьдесят шесть,восемьдесят семь,восемьдесят восемь,восемьдесят девять, | |
| девяносто один,девяносто два,девяносто три,девяносто четыре,девяносто пять,девяносто шесть,девяносто семь,девяносто восемь,девяносто девять, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment