- ใญใณใฐใใ
- AKB0048
- ใใใใพใซใใง
๐
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
PROGRAM FIZZBUZZ; | |
PROCEDURE FIZZ_BUZZ(N: INTEGER); | |
VAR | |
I: INTEGER; | |
BEGIN | |
FOR I := 1 TO N DO BEGIN | |
IF I MOD 15 = 0 THEN BEGIN | |
WRITELN('FizzBuzz'); | |
END ELSE IF I MOD 5 = 0 THEN BEGIN |
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
ๅฎถ้ปๅบใใๅๅใ็ช็ใใๆนๆณใจใใใซๅฏพๆใใๅบๅดใฎๆฆ็ฅใซใคใใฆใฎๆๆก | |
ๅๅใ็ช็ใใๆนๆณใ้ปๆณขใซใใๅฎใใใใฒใผใใ้้ใใๆนๆณ | |
ใปๅๅใซใคใใฆใใ็บ้ณใใใคในใ้็ดใงๅ ใใใจใซใใใ้ปๆณขใ้้ไธ่ฝใซใใใฒใผใใ้้ใใใ | |
ใใใซๅฏพใใๅบๅดใฎๆฆ็ฅ | |
ใปๅๅๅดใใๅบๅดใฎใฉใใใฎ่ฃ ็ฝฎใจ้ไฟกใงใใชใใชใฃใ้ใซ่ญฆๅ ฑ้ณใ้ณดใใ |
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
require "rubygems" | |
require "open-uri" | |
require "json" | |
require "google_spreadsheet" | |
# sudo gem install google-spreadsheet-ruby | |
if ARGV.size > 0 | |
google_name = ARGV[0] | |
google_password = ARGV[1] | |
else |
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
#!perl -l | |
use strict; | |
use warnings; | |
local *STDOUT = do { | |
if (my $pager = $ENV{GIT_PAGER} // qx(git config --get core.pager)) { | |
open my $pipe, '|-', $pager; | |
$pipe; | |
} else { | |
*STDOUT; |
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
ใใใใใใใใใใใใใใ ,, -โ-ใใใใใใใใ | |
ใใใใใใใใใใใใใ๏ผใใใใ ใฝใใใ | |
ใใใใใใใ๏ผ๏ฟฃ๏ฟฃ๏ผใใ๏ผiโใฝ๏ฝค|ใใใใใฏใฑใงใผใ๏ผ๏ผ๏ผ๏ผ | |
ใใใใใใ/ใใ๏ผใ๏ผ/ใใ ๏ผใ/ใใ ใใใใใใใ | |
ใใใใใ/ใใใใ ใ๏ฝค.,../ใ,ใผ-๏ฝคใใใใใ ใ | |
ใใใใ=ๅฝณใใใใใ ๏ผผ๏ผผโ๏พใ๏ฝค๏ฝ ใฝใใ๏ฝใ ใ | |
ใใใใ/ ใ ใใใใใใใ๏ผผ๏ผผ๏พใ๏ฝคใใ๏ฝ | |
ใใใ/ใใใใใใใใใ/โ ใฝ ใฝUใใ๏ฝ | |
ใใ /ใใใใใใใใใโใใใ`ใฝUใโด๏ฝ | |
ใใโใใใใใใใใใโใใใใใUใ๏ผl |
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
ใใใใใใใใใใใใใใ ,, -โ-ใใใใใใใใ | |
ใใใใใใใใใใใใใ๏ผใใใใ ใฝใใใ | |
ใใใใใใใ๏ผ๏ฟฃ๏ฟฃ๏ผใใ๏ผiโใฝ๏ฝค|ใใใใใฏใฑใงใผใ๏ผ๏ผ๏ผ๏ผ | |
ใใใใใใ/ใใ๏ผใ๏ผ/ใใ ๏ผใ/ใใ ใใใใใใใ | |
ใใใใใ/ใใใใ ใ๏ฝค.,../ใ,ใผ-๏ฝคใใใใใ ใ | |
ใใใใ=ๅฝณใใใใใ ๏ผผ๏ผผโ๏พใ๏ฝค๏ฝ ใฝใใ๏ฝใ ใ | |
ใใใใ/ ใ ใใใใใใใ๏ผผ๏ผผ๏พใ๏ฝคใใ๏ฝ | |
ใใใ/ใใใใใใใใใ/โ ใฝ ใฝUใใ๏ฝ | |
ใใ /ใใใใใใใใใโใใใ`ใฝUใโด๏ฝ | |
ใใโใใใใใใใใใโใใใใใUใ๏ผl |
ๅฝไปคๅใง่จ่ฟฐใ
for (n <- 1 to 100) {
if (n % 15 == 0) {
println("FizzBuzz")
} else if (n % 3 == 0) {
println("Fizz")
} else if (n % 5 == 0) {
println("Buzz")
} else {
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
package main | |
import( | |
"io"; | |
"fmt"; | |
"bytes"; | |
"template"; | |
"os"; | |
"strings"; | |
"strconv"; | |
"http"; |