自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(3)
  • 收藏
  • 关注

原创 程序的邮件发送

//创建一个Email对象        SimpleEmail email = new SimpleEmail();        //设置发送邮箱的服务器        email.setHostName("smtp.163.com");        //设置发送邮箱的账号密码        email.setAuthentication("你的账号", "密码");      ...

2018-10-06 01:14:29 416

原创 控制台打印N行杨辉三角,并算出总和

Scanner src = new Scanner(System.in); System.out.println("请输入杨辉三角的行数: "); int total = 0; int total1 = 0; int a  =src.nextInt(); //定义一个二维数组 int[][] str = new int[a][]; for(int i = 0;i<a;i++){...

2018-06-28 09:00:07 1785

原创 JAVA初学者简单编写四则混合运算

Java初学者简单编程运算法;只使用for循环与数组;重点在于String的API使用。public class 四则运算 { public static void main(String[] args) { Scanner str1 = new Scanner(System.in); System.out.println("请输入:"); String str = str1.nextLin...

2018-05-26 15:49:25 2358

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除