编写JAVA程序,编写一个输出“Hello World!”的程序,谢谢大家的帮忙,请大家来看看
编写一个输出“HelloWorld!”的程序,用两种方式实现(Application、Applet)。...
编写一个输出“Hello World!”的程序,用两种方式实现(Application、Applet)。
展开
3个回答
展开全部
applet的hello world
在jsp项目下新建一jsp文件,全部代码如下:
<%@ page language="java" contentType="text/html; charset=gb2312"
pageEncoding="gb2312"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>applet 的hello world程序</title>
</head>
<body>
<applet alt="applet 的hello world程序" code="HelloWorld.class" width="200" height="100"></applet>
</body>
</html>
在源文件里写一小应用程序HelloWorld.java
全部代码如下:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g)
{
g.drawString("hello world", 6, 36);
}
}
将生成的类文件拷贝到jsp相同的目录下,运行jsp文件查看效果!
2.Application的 :
public class HelloWord {
public static void main(String[] args) {
System.out.println("HEllo wrod!!!");
}
}
在jsp项目下新建一jsp文件,全部代码如下:
<%@ page language="java" contentType="text/html; charset=gb2312"
pageEncoding="gb2312"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>applet 的hello world程序</title>
</head>
<body>
<applet alt="applet 的hello world程序" code="HelloWorld.class" width="200" height="100"></applet>
</body>
</html>
在源文件里写一小应用程序HelloWorld.java
全部代码如下:
import java.applet.Applet;
import java.awt.Graphics;
public class HelloWorld extends Applet {
public void paint(Graphics g)
{
g.drawString("hello world", 6, 36);
}
}
将生成的类文件拷贝到jsp相同的目录下,运行jsp文件查看效果!
2.Application的 :
public class HelloWord {
public static void main(String[] args) {
System.out.println("HEllo wrod!!!");
}
}
展开全部
只会Application方式:
classic Dashu{
public static void main(String[] args){
System.out.print("hello world");
}
}
classic Dashu{
public static void main(String[] args){
System.out.print("hello world");
}
}
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2010-01-10
展开全部
#include<stdio.h>
int main()
{
printf(hello world!\n);
return 0;
}
int main()
{
printf(hello world!\n);
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询