public class test2
{
public static void main(String[] args){
String sName[]= new String[]{"c","b","a","d","e"};
//输出上面的三行
for(int i = 2; i >= 0; i--)
{
for(int j = 0; j < i ; j++)
{
Systemoutprint(" ");
}
for(int n = 0; n < 5 - 2 i; n++)
{
Systemoutprint(sName[i]);
}
Systemoutprintln("");
}
//输出下面的两行
for(int i = 1; i < 3; i ++)
{
for(int j = 0; j < i ; j++)
{
Systemoutprint(" ");
}
for(int n = 0; n < 5 - 2 i; n++)
{
Systemoutprint(sName[i+2]);
}
Systemoutprintln("");
}
}
}
比如myeclipse,那么就是创建一个类,然后敲入main,alt+/可以导出main函数(Java程序的入口就是main)。如果没有用工具,需要配置环境变量的,配置好之后。建一个Java文件,文件名字和类名相同,包括大小写,例如:
public void show() {
Scanner scan = new Scanner(Systemin());
Systemoutprint("姓名:");
scannextLine();
Systemoutprint("班级:");
scannextLine();
Systemoutprint("专业:");
scannextLine();
}
public class Hello
{
public static void main(String[] args) {
Scanner sc = new Scanner(Systemin);
Systemoutprintln("请输入姓名");
String str = scnext();
Systemoutprintln("请输入班级");
String st = scnext();
Systemoutprintln("请输入专业");
String s = scnext();
Systemoutprintln("欢迎你,"+st+str+s+"同学!");
}
}
public interface EmploySalary(){
public int getSalayy(int a,int b);
}
public class OfficeWorker implements employSalary(){
public int getSalayy(int a,int b){
return 12(a+b2);
}
}
public class Manager implements employSalary(){
public int getSalayy(int a,int b){
return 12(a2+b);
}
}
public class GetSalary(){
private EmploySalary employSalary;
public GetSalary(EmploySalary employSalary){
thisemploySalary=employSalary;
}
public void setEmploySalary(EmploySalary employSalary){
thisemploySalary=employSalary;
}
public int getYearSalary(int A,int B){
return employSalarygetSalayy(A,B);
}
}
public class Test(){
public static void main(String[] args){
int A=10;
int B=20;
OfficeWorker officeWorker=new OfficeWorker();
Manager manager =new Manager();
GetSalary getSalary=new GetSalary(officeWorker);
getSalarygetYearSalary(A,B);
getSalarysetEmploySalary(manager);
getSalarygetYearSalary(A,B);
}
}
第一题:
import javautilScanner;
public class CountDate {
public static void main(String[] args) {
Scanner s = new Scanner(Systemin);
Systemoutprintln("解放军战士连续作战的小时数:");
int hours = snextInt();
Systemoutprint("解放军战士连续作战");
if(hours <= 0)
Systemoutprintln("解放军战士没奋战啊。。。。。");
if(hours / 24 > 0)
Systemoutprint((hours / 24) + "天");
if(hours % 24 > 0)
Systemoutprint((hours % 24) + "小时");
}
}
第二题
import javautilScanner;
public class GetNumResult {
public static void main(String[] args) {
Scanner s = new Scanner(Systemin);
Systemoutprintln("请输入一个整数:");
int num = snextInt();
for(int i = 1; i <= 10; i ++){
Systemoutprintln(num + " " + i + " = " + (i num));
}
}
}
下下来,是不是exe文件 ,还是一个文件夹呢,你得配置一下你的系统变量在我的电脑右击属性,打开高级,在里面有一个变量 ,打开,在上面添加一个 名为PATH 值为,你安装的那个目录,下的bin 如: C:\java\bin 这样就可以用了 打开记事本,在里面输入:public class HellowWord{public static void main(String[]args){Systemoutprintln("HellowWord!");} 保存为 HellowWordjava文件 文件名一定要和类名一样 进入Dos 中,并进入到这个文件 的目录在里面输入: javac HellowWordjava没有问题的情况下再次输入: java HellowWord就OK了}
以上就是关于一个简单的JAVA程序编写全部的内容,包括:一个简单的JAVA程序编写、Java编程,怎样做一个最简单的输出程序、编写一个简单java通用程序等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)