摘要: ``` 经过一个学期的Java学习,我对Java产生了浓厚的兴趣,即使在一开始对着这门科目都是懵懵懂懂的样子,但是经过自己的不断学习我感受到了乐趣,尤其是在窗口那一章节,看着由自己编的程序而产生的窗口感觉十分新奇。随着自己不断的学习和深入研究,我发现我不是在编程我是在创造“生命”一般,虽然这样说有点 阅读全文
posted @ 2019-07-04 22:49 Song阿 阅读(152) 评论(0) 推荐(0) 编辑
摘要: ``` package syj; import java.io.*; public class syj4 { public static void main(String[] args) { // TODO 自动生成的方法存根 File file = new File("data.txt"); String syj = "12345abcdef@#%&*软件工程... 阅读全文
posted @ 2019-06-20 00:26 Song阿 阅读(143) 评论(0) 推荐(0) 编辑
摘要: package AAA; class testPor1 { private int a,b; public int getA() { return a; } public void setA(int a) { this.a = a; } public int getB() { return b; } 阅读全文
posted @ 2019-06-17 12:55 Song阿 阅读(100) 评论(0) 推荐(0) 编辑
摘要: package AAA; import java.util.*; public class Person { public static void main(String[]args){ final double PI=3.14; Scanner reader=new Scanner(System.in); ... 阅读全文
posted @ 2019-06-16 20:09 Song阿 阅读(107) 评论(0) 推荐(0) 编辑
摘要: 本次阅读他人的博客,我感觉现在的我就是代码世界的一只小虫子,对一望无际的代码森林充满了好奇与畏惧,不过我相信我会通过自己的不懈努力,破茧成蝶,在代码的世界里遨游 阅读全文
posted @ 2019-06-14 13:14 Song阿 阅读(90) 评论(0) 推荐(0) 编辑
摘要: ``` import java.awt.Color; import java.awt.event.*; import javax.swing.*; public class My1 implements ActionListener{ JFrame f1,f2; JButton b; JPanel p1,p2; JLabel l1,l2,l3; JTextField t... 阅读全文
posted @ 2019-05-16 23:31 Song阿 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ``` import java.awt.Color; import java.awt.event.*; import javax.swing.*; public class My implements ActionListener{ JFrame f; JButton b; JPanel p; public My(){ f=new JFrame(); p=new JPane... 阅读全文
posted @ 2019-05-10 00:09 Song阿 阅读(153) 评论(0) 推荐(0) 编辑
摘要: ``` package c; import java.util. ; class student{ String name; char sex; int age; String number; double score[]=new double[5]; void printq(student s){ 阅读全文
posted @ 2019-04-25 22:55 Song阿 阅读(90) 评论(0) 推荐(0) 编辑