利用简单的HTML进行简单的网页制作
举例:
将一道题,及其自己的答案,别人的答案以网页的形式呈现。代码如下:
<!doctype html>
这是第一个模拟的博客
CSDN
请点我请点我 <p>这周的题目如下<br /><br /><br />
<h4>(如果你对以下结果都不满意的话,请点击上面进行查询哈)</h4> <br />
<img src="第二周.png" alt="题目" /> <br /><br />
<h3>我的答案</h3><br />
package cn.bjsxt.Collection;
import cn.bjsxt.String.Test;
public class Test02 {
public static boolean isContain(String a1,String a2) {
return a1.contains(a2);
}
public static void main(String[] args) {
String s1 = “vbvb”;
boolean s2 = s1.contains(“b”);
Test t = new Test();
if(t.isContains(“vbvb”,“b”)) {
System.out.println(“包含”);
System.out.println(s2);
}else {
System.out.println(“不包含”);
}
}
}
这是别人的答案
public class IndexOfTest {
public static void main(String[] args) {
// TODO Auto-generated method stub
String str = “I love china,my motherland!”;
int result1 = str.indexOf(“china”);
int result2 = str.indexOf(“chinese”);
if(result1 != -1){
System.out.println(“字符串str中包含子串“china””+result1);
}else{
System.out.println(“字符串str中不包含子串“china””+result1);
}
if(result2 != -1){
System.out.println(“字符串str中包含子串“chinese””+result2);
}else{
System.out.println(“字符串str中不包含子串“chinese””+result2);
}
}
}
</p>
</center>
</body>
网页呈现如下