盛泽第一中学的域
初一同学请于此域交作业
排名于第二天更新,请不要着急
只因房见

c++ code

#include<iostream>
using namespace std;
int main(){
    cout << "hello szyz"<< endl;
    return 0;
}

python code

print("hello szyz")

c code

#include<stdio.h>
int main()
{
    printf("hello szyz");
    return 0;
}

java code

public class HelloWorld {
    public static void main(String[] args) {
    // TODO Auto-generated method stub
        System.out.println("hello szyz");
    }
}

PHP code

<?php
    echo "hello szyz" 
?>

GO code

package main
import "fmt"
func main()
{
    fmt.Println("hello szyz")
}

c# code

using System;
public class program
{
    public static void main()
    {
        Console.WriteLine("hello szyz");
        Console.ReadLine();
    }
}     

r code

print("hello szyz")