var regName = /^(div|a|p|ul|li|input|select|document|body|iframe)$/;function createDom(name, obj) { var match = regName.exec(name), dom; if (match && match[1]) { dom = document.createElement(match[1]); } if (dom.nodeType && dom.nodeType =…
//总金额平均分配给总人数 //参数说明:总金额,总人数,最大金额为平均金额的倍率 public double[] GetList(double zje,int zrs,int max) { double total = zje;//总金额 int count = zrs;//总人数 double avg = total / count; double[] list = new double[count]; int seed = 1; while (count > 0) { if (count…
, matnr LIKE mara-matnr , maktx LIKE makt-maktx , END OF itab_matnr . , class LIKE m_wwgha-class,"部门 kschl LIKE m_wwgha-kschl,"DESC END OF itab_class . DATA: l_ixml TYPE REF TO if_ixml, l_encoding TYPE REF TO if_ixml_encoding, l_comment TYPE REF…