在下面的列表中,某些列表项具有换行符。文字换行时,math
元素的宽度跨度过大,这迫使蓝色正方形移到最右边。
是否有某种方法可以使段落元素跨过最小宽度,以使文本根据需要自动换行而不会将蓝色方框一直推到右边?
#include <stdio.h>
int main()
{
int a, b;
double c;
a = 5;
b = 2;
c = a / b;
printf("%lf", c);
//output: 2.000000
}
<p>