标签:
程序是为了让计算机执行某些操作或解决某个问题而编写的一系列有序指令的集合
1.编写源程序
2.编译
3.运行
1.编写程序结构
Public class hehe{}
2.编写main()方法的框架
Public static void main(String[]args){}
3.编写代码
System.out.println(“hehe”)
1. 单行注释 //
2. 多行注释 /* */
标签:
原文地址:http://www.cnblogs.com/qjt970518--/p/5655158.html