Java Lab

Lab 1

新学期,新的语言学习开始了~还是老样子,写代码~

public class TestArgs {
    public static void main (String[] args) {
        System.out.println("Name            = " + args[0] + " " + args[1]);
        System.out.println("BUPT Email Username = " + args[2]);
        System.out.println("Student Number      = " + args[3]);
    }
}

继续阅读

Coursework 2015

Question

Write a program that will help elementary school pupils practice math.

a) The program will first ask the user for his/her ID number (including two letters & 4 digits), e.g.:

Please input your four digit ID no: AB1234
The program should have input validation.
Then the program prompts three choices:
* Start a test
* Check scores
* Exit
继续阅读

Typecho 首页显示摘要

网上有很多 Typecho 首页文章显示摘要的方法介绍,但是,使用了后发现,效果并不太好,尤其是文章的开头部分有多种格式的内容时,在首页只会显示纯文字,各种格式都会消失不见。还有一个专门显示摘要的插件,但是那个插件只是将文章输出的高度限制了,在打开首页时,仍然会加载所有的内容,而且有些图片会被截断显示。或者还有个添加 <!--more--> 标签的方法,但是太麻烦,需要每次都添加,而且容易忘记添加。

但是前段时间自己鼓捣研究了一下,有了更好的显示摘要效果。

方法:

编辑模板的 index.php 文件,找到这一行代码:

<?php $this->content('阅读剩余部分...'); ?>

将其替换为:

<?php $this->summary(); ?><p class="more"><a href="<?php $this->permalink() ?>">展开阅读</a></p>

保存,刷新你的首页看看效果吧!

如果以同样的方法修改模板的 archive.php 文件,那么在文章分类显示页也可以做到显示摘要。