上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 207 下一页
摘要: 一道集中了中心对称、极值、零点等考点的导数多选题,值得玩味。 (多选)已知函数f(x)=x^3-3*x^2一a*x+a,则 A.f(x)的图象关于点(1,-2)成中心对称 B.当a>-4时,f(x)有两个极值点 C.对于任意a>0,f(x)有三个零点 D.当a>0时,f(x)在(0,2]上存在最大值 阅读全文
posted @ 2022-12-12 23:10 逆火狂飙 阅读(57) 评论(0) 推荐(0)
摘要: 用Html5/Canvas绘制渐变铝圈国旗玻璃光。 阅读全文
posted @ 2022-12-07 10:17 逆火狂飙 阅读(144) 评论(0) 推荐(0)
摘要: 下面提供了两份代码,进阶篇的效率几乎比入门篇提高一个数量级。 提高效率的根源在于将b转换为周长C和a的函数,因此用一重循环就解决了问题。 这种通过改变算法提高效率的方式值得推崇。 入门篇: package test221201; import java.util.Set; import java.u 阅读全文
posted @ 2022-12-01 17:13 逆火狂飙 阅读(177) 评论(0) 推荐(0)
摘要: 【题目】 有8位学生,其中小学生2名,初中生3名,高中生3名,现将他们排成一列,要求2名小学生相邻,3名初中生相邻,3名高中生任意两名都不相邻,则不同排法有几种? 【数学解答】 三高全排:A33=6 两小全排:A22=2 三初全排:A33=6 两小捆绑和三初捆绑插三高间的两空:C22A22=2 合计 阅读全文
posted @ 2022-12-01 16:44 逆火狂飙 阅读(92) 评论(1) 推荐(0)
摘要: 高中数学/比大小 16.已知2*log_2_x-x=0,3*log_3_x-x=0,5*log_5_x-x=0,则x,y,z的大小关系不可能为() A.x 阅读全文
posted @ 2022-11-25 10:32 逆火狂飙 阅读(3755) 评论(0) 推荐(0)
摘要: 【原理】 勾股数是符合a2+b2=c2的整数,比如32+42=52,52+122=132等 可以设a=m2-n2,b=2mn,那么自然c=m2+n2. 它们正好满足勾股定理,因为(m2-n2)2+(2mn)2=(m2+n2)2 这样进行代数变换后,程序上就只要做m套n的双重遍历就行了(因为a是正数, 阅读全文
posted @ 2022-11-22 10:36 逆火狂飙 阅读(847) 评论(0) 推荐(0)
摘要: 高中数学/导数/函数/零点 函数f(x)=(mx-1)*e^x+mx+1有三个零点,求m的取值范围. (0,0.5) 阅读全文
posted @ 2022-10-24 03:39 逆火狂飙 阅读(48) 评论(0) 推荐(0)
摘要: 【创建用户test1005】 create user test1005 identified by 1234; grant create session to test1005; grant create table to test1005; grant drop any table to test 阅读全文
posted @ 2022-10-05 14:05 逆火狂飙 阅读(480) 评论(0) 推荐(0)
摘要: 【查看当前用户的缺省表空间】 SQL:select username,default_tablespace from user_users 运行: luna@ORCL>select username,default_tablespace from user_users; USERNAME DEFAU 阅读全文
posted @ 2022-10-05 13:00 逆火狂飙 阅读(257) 评论(0) 推荐(0)
摘要: 【代码】 package test105; public class Shadow { public static void main(String[] args) { String retval=shadowCenter("abcde12345",3,8); System.out.println( 阅读全文
posted @ 2022-10-05 12:01 逆火狂飙 阅读(502) 评论(0) 推荐(0)
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 207 下一页