完成的任务:如下图所示
利用上面的标签知识来编写
<!-- MathML 是数学标记语言,是一种基于XML(标准通用标记语言的子集)的标准,用来在互联网上书写数学符号和公式的置标语言。 --> <math xmlns="http://www.w3.org/1998/Math/MathML"> <!--a平方+b平方=c平方 --> <mrow> <msup><mi>a</mi><mn>2</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>2</mn></msup> <mo>=</mo> <msup><mi>c</mi><mn>2</mn></msup> </mrow> </math> <hr color="red">
<math xmlns="http://www.w3.org/1998/Math/MathML"> <!-- c平方-b平方=a平方--> <mrow> <msup><mi>c</mi><mn>2</mn></msup> <mo>-</mo> <msup><mi>b</mi><mn>2</mn></msup> <mo>=</mo> <msup><mi>a</mi><mn>2</mn></msup> </mrow> </math> <hr color="green">
<math xmlns="http://www.w3.org/1998/Math/MathML"> <!-- a立方+b立方+c立方=d立方--> <mrow> <msup><mi>a</mi><mn>3</mn></msup> <mo>+</mo> <msup><mi>b</mi><mn>3</mn></msup> <mo>+</mo> <msup><mi>c</mi><mn>3</mn></msup> <mo>=</mo> <msup><mi>d</mi><mn>3</mn></msup> </mrow> </math> <hr color="green">
<math xmlns="http://www.w3.org/1998/Math/MathML"> <mrow> <mrow> <!-- 3y+4x+4=0 --> <msup> <mi>3</mi> <mn>y</mn> </msup> <mo>+</mo> <mrow> <mn>4</mn> <mo></mo> <mi>x</mi> </mrow> <mo>+</mo> <mn>4</mn> </mrow> <mo>=</mo> <mn>0</mn> </mrow> </math> <hr color="green">
一个代码块一个工式分界线