画个小菱形吧~ rt
for(int i = 0; i < m_len; ++i){
for(intj = 1; j < m_len - i; ++j)
xpList+=" ";
for(int j = 0; j <= i; ++j)
xpList+="* ";
xpList+="\n";
}
for(int i = m_len; i < 2*m_len-1; ++i){
for(int j = 0; j <= i - m_len; ++j)
xpList+=" ";
for(int j = 0; j < 2*m_len-1 - i; ++j)
xpList+="* ";
xpList+="\n";
}
核心代码在此,改改就能用哈~~