Skip to content

StruggleForCode/HelloWorld

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

HelloWorld

- 2019年5月22日随机活动

简介:无简介。
具体:为每一位签到0x0030天以上的管理者派发一张具有时效的补签卡。
物品详情:补签卡 * 1 (2019年5月25日23时59分失效)
物品获得人员:C++Manager(0), PythonManager(0)。

- C HelloWorld 模板

#include <stdio.h>

int main(int argc, char *argv[])
{
    printf("%d -> HelloWorld\n", 0x0000);
    return 0;
}

- C++ HelloWorld 模板

#include <iostream>

int main(int argc, char *argv[])
{
    std::cout << 0x0000 << " -> HelloWorld" << std::endl;
    return 0;
}

- Go HelloWorld 模板

package main

import "fmt"

func main() {
    fmt.Printf("%d -> HelloWorld\n", 0x0000);
}

- Java HelloWorld 模板

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println(0x0000 + " -> HelloWorld");
    }
}

- Scheme HelloWorld 模版

(begin
    (display (string-append (number->string #x0000) " -> HelloWorld" ))
    (newline)
)

- Python HelloWorld 模板

print(0x0000, " -> HelloWorld", sep='', end='\n')

- Haskell HelloWorld 模板

putStrLn $ show(0x0000) ++ " -> HelloWorld"

- JavaScript HelloWorld 模板

console.log(0x0000 + " -> HelloWorld");

Releases

No releases published

Packages

No packages published

Languages

  • C++ 25.8%
  • Java 24.3%
  • C 15.4%
  • Go 11.8%
  • Python 9.8%
  • Haskell 7.2%
  • Other 5.7%