代码搜索:Hello
找到约 10,000 项符合「Hello」的源代码
代码结果 10,000
www.eeworm.com/read/382954/8984892
cs hello.cs
using System; //引用了一个叫System的名空间
class HelloWorld //定义一个叫HelloWorld的类
{
public static void Main() //静态的Main方法是程序的入口
{
Console.WriteLine("Hello, World!"); //输出Hello, World!
}
}
www.eeworm.com/read/382954/8984897
sln hello.sln
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{8BC9CEB9-8B4A-11D0-8D11-00A0C91BC942}") = "hello.exe", "hello.exe", "{450B85FC-8DBB-4AE5-AFC2-4215A7CA5D0A}"
EndProject
Global
www.eeworm.com/read/382954/8984903
suo hello.suo
www.eeworm.com/read/382954/8984906
exe hello.exe
www.eeworm.com/read/185783/8985445
c hello.c
#include "ourhdr.h"
int
main(void)
{
printf("hello world from process ID %d\n", getpid());
exit(0);
}
www.eeworm.com/read/185783/8986176
ps hello.ps
%!
/Times-Roman findfont
15 scalefont % point size of 15
setfont % establish current font
300 350 moveto % x=300, y=350 (position on page)
(hello, world) show % output the string to current p
www.eeworm.com/read/382954/8987151
cs hello.cs
using System; //引用了一个叫System的名空间
class easyInput //类的名字与文件名不同也无所谓
{
public static void Main()
{
string strName; //声明一个string类型的值变量
Console.Write("please input your name:"); //输出一句话,但
www.eeworm.com/read/382954/8987154
sln hello.sln
Microsoft Visual Studio Solution File, Format Version 7.00
Project("{8BC9CEB9-8B4A-11D0-8D11-00A0C91BC942}") = "hello.exe", "hello.exe", "{48C0D4C5-A47D-4B80-A2B7-8DF6BCDC1E1D}"
EndProject
Global
www.eeworm.com/read/382954/8987158