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
| function Aisatsu(){ | |
| output("おはよう"); | |
| output("こんにちは"); | |
| output("こんばんは"); | |
| } | |
| Aisatsu(); |
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
| function answer1(){ | |
| // 変数を使ったパターン ちょっとインチキ | |
| var myArray = ["c", "o", "d", "e", "s", "t", "u", "d", "y"]; | |
| var start = 1; | |
| var end = 4; | |
| for(var count = start; count < end; count++) { | |
| output(myArray[count]); | |
| } | |
| } |
NewerOlder