05 2023 档案
摘要:while initialize test change operation change, test, operation's order will affect the first line number
阅读全文
摘要:What is the GCD? In mathematics, the greatest common divisor (gcd) of two or more integers, when at least one of them is not zero, is the largest posi
阅读全文
摘要:The division (/) operator produces the quotient of its operands where the left operand is the dividend and the right operand is the divisor. The divis
阅读全文
摘要:find out diagonal for(let b = 1; b <= 9; ++b) { let res = '' for(let p = 1; p <= 9; ++p) { if(b > p) res += ' ' else res += '*' } console.log(res) } f
阅读全文
摘要:SQLSTATE - Wikipedia
阅读全文
摘要:overflow: hidden, display: inline-block => BFC padding position float border padding
阅读全文
摘要:Java can't return value Python can only return None JavaScript can return any value
阅读全文
摘要:XMLHttpRequest (javascript.info) <body> <script> // Create a new XMLHTTPRequest object let xhr = new XMLHttpRequest() xhr.timeout = 5000 // timeout in
阅读全文