猫史档案馆


Lv.0

获赞:0收藏:0浏览:0作品收藏:0
回复帖子评论
上一页3 页 / 共 8下一页

谁要喵QQ 中回复

1551549752

2020-05-31T19:14:49 点赞:0

彩虹字体,会忙 中回复

 

<font color=#08F7F7>彩</font><font color=#10EFEF>虹</font><font color=#18E7E7>字</font><font color=#20DFDF>是</font><font color=#28D7D7>一</font><font color=#30CFCF>组</font><font color=#38C7C7>颜</font><font color=#40BFBF>色</font><font color=#48B7B7>连</font><font color=#50AFAF>续</font><font color=#58A7A7>变</font><font color=#609F9F>化</font><font color=#689797>的</font><font color=#708F8F>彩</font><font color=#788787>色</font><font color=#807F7F>字</font><font color=#887777>体</font><font color=#906F6F>,</font><font color=#986767>文</font><font color=#A05F5F>章</font><font color=#A85757>中</font><font color=#B04F4F>加</font><font color=#B84747>入</font><font color=#C03F3F>一</font><font color=#C83737>小</font><font color=#D02F2F>段</font><font color=#D82727>更</font><font color=#E01F1F>有</font><font color=#E81717>特</font><font color=#F00F0F>色</font>

 

刚刚

2020-05-31T20:22:06 点赞:0

彩虹字体,会忙 中回复

呃,好吧,我到时候也要看看,我也不会

2020-06-01T09:00:34 点赞:0

彩虹字体,会忙 中回复

<font color="#00FFFF">这</font><font color="#00E8FF">种</font><font color="#00D1FF">事</font><font color="#00BAFF">h</font><font color="#00A3FF">t</font><font color="#008CFF">m</font><font color="#0075FF">l</font><font color="#005EFF">的</font><font color="#0047FF">编</font><font color="#0030FF">辑</font><font color="#0019FF">码</font>

2020-06-01T09:01:23 点赞:0

彩虹字体,会忙 中回复

<font color="#00FFFF">这</font>
<font color="#00E8FF">种</font>
<font color="#00D1FF">事</font>
<font color="#00BAFF">h</font>
<font color="#00A3FF">t</font>
<font color="#008CFF">m</font>
<font color="#0075FF">l</font>
<font color="#005EFF">的</font>
<font color="#0047FF">编</font>
<font color="#0030FF">辑</font>
<font color="#0019FF">码</font>

2020-06-01T09:02:44 点赞:0

论坛管喵,来封我号啊 中回复

你是用的sublime text吗?

2020-06-01T11:54:23 点赞:0

【重返1949】70年风风雨雨,为祖国点赞,向各行各业人民致敬!! 中回复

官方贴好热门

2020-06-01T20:39:01 点赞:0

额,咱们通过下面这个软件建个群吧 中回复

加classin,13632321292

2020-06-02T13:48:12 点赞:0

好没信心……有人帮忙吗? 中回复

进不去

2020-06-02T13:48:40 点赞:0

【js】我从地图里弄来的! 中回复

哦,沙发

2020-06-06T08:29:09 点赞:0

达到python1级 中回复

from time import*
print("欢迎进入计算器。不能输入小数。")
sleep(1)
a = input("加法按1,乘法按2,减法按3,除法按4,平方按5,立方按6,多次方按7,平方根按8,平方差(两个数)按9,阶乘按10,立方差按11,取余按12,最大公约数按13,最小公倍数按14,平均数、方差、中位数按15,立方根按16,判断质数合数按17,绝对值按18,exp按19,cos按20,反cos按21,sin按22,反sin按23,tan按24,反tan按25,判断整除按26,π按27,e按28,约分按29,十进制转八进制按30,十进制转十六进制按31,十进制转二进制按32,等差数列求和按33,平方和按34,python表达式按35:")
if a=="1":
    
    py1 = input("第一个数:")
    py2 = input("第二个数:")
    py1 = int(py1)
    py2 = int(py2)
    print(py1+py2)
if a=="2":
    
    py3 = input("第一个数:")
    py4 = input("第二个数:")
    py3 = int(py3)
    py4 = int(py4)
    print(py3*py4)
if a=="3":
    
    py5 = input("第一个数(被减数):")
    py6 = input("第二个数(减数):")
    py5 = int(py5)
    py6 = int(py6)
    print(py5-py6)
if a=="4":
    cf = input("你要哪种除法?1.普通,2.带余除法:")
    if cf == "1":
        py7 = int(input("被除数:"))
        py8 = int(input("除数:"))
        print(py7/py8)
    else:
        def daychof(a,b):
            
            c = a%b
            d = a-c
            e = d/b
            print(a,"÷",b,"=",int(e),"······",c)
        a = int(input(":"))
        b = int(input(":"))
        daychof(a,b)
    
if a=="5":
   
    py9 = input("要计算二次方的数:")
    py9 = int(py9)
    print(py9**2)
if a=="6":
    
    py10 = input("要计算立方的数:")
    py10 = int(py10)
    print(py10**3)
if a=="7":
    #"**" means involution
   
    py11 = input("请输入第一个数(用于计算的数):")
    py12 = input("请输入第二个数(指数):")
    py11 = int(py11)
    py12 = int(py12)
    print(py11**py12)
if a=="8":
    
    #Import the mathematics arithmetic figure,then calculate the 喵.
    from math import*
    py13 = input("要开平方的数:")
    py13 = int(py13)
    print(sqrt(py13))
if a=="10":
    
    from math import*
    py14 = int(input("输入一个数字:"))
    a = factorial(py14)
    print(a)
if a=="9":
    
    py15 = int(input("输入被减数原数:"))
    py16 = int(input("输入减数原数:"))
    py17 = py15**2
    py18 = py16**2
    print(py17-py18)
if a=="11":
    
    py19 = int(input("输入被减数原数:"))
    py20 = int(input("输入减数原数:"))
    py21 = py19**3
    py22 = py20**3
    print(py21-py22)
if a=="12":
    
    py23 = int(input("被除数:"))
    py24 = int(input("除数:"))
    KOKOKOKO = py23%py24               #"%" means Mod
    print(KOKOKOKO)
if a=="13":
    def hcf(x, y):
       
        if x > y:
            喵aller = y
        else:
            喵aller = x
        for i in range(1,喵aller + 1):
            if((x % i ==0)and(y % i ==0)):
                hcf = i
        return hcf
    num1 = int(input("输入第一个数字:"))
    num2 = int(input("输入第二个数字:"))
    print(num1,"和",num2,"的最大公约数为",hcf(num1,num2))
if a=="14":
    def lcm(x,y):
        if x > y:
            greater = x
        else:
            greater = y
        #万事俱备,调用while true
        while True:
            if((greater % x ==0) and (greater % y ==0)):
                lcm = greater
                break
            greater += 1
        return lcm
    num3 = int(input("输入第一个数字:"))
    num4 = int(input("输入第二个数字:"))
    print(num3,"和",num4,"的最小公倍数为",lcm(num3,num4))
if a=="15":
    def getNum():
        nums = []
        iNumStr = input("请输入数字:")
        while iNumStr !="":
            nums.append(eval(iNumStr))
            iNumStr = input("请输入数字(回车停止):")
        return nums
    def mean(numbers):
        s = 0.0
        for num in numbers:
            s = s + num
        return s/len(numbers)
    def dev(numbers,mean):
        sdev = 0.0
        for num in numbers:
            sdev = sdev + (num - mean)**2
        return pow(sdev / (len(numbers)-1),0.5)
    def median(numbers):
        numbers = sorted(numbers)
        size = len(numbers)
        if size % 2==0:
            med = (numbers[size//2 - 1] + numbers[size//2])/2
        else:
            med = numbers[size//2]
        return med
    n = getNum()
    m = mean(n)
    print("平均值:{},方差:{:.2},中位数:{}".format(m, dev(n,m),median(n)))
if a=="16":
    lfg = int(input("要计算立方根的数:"))
    t = pow(lfg,float(1)/float(3))
    print(t)
if a=="17":
    
    while True:
        num = int(input("请输入要判断的数字(空格将导致程序错误而结束):"))
        if num > 1:
            for i in range(2,num):
                if num%i ==0:
                    print(num,"是合数,因为它能被",i,"整除。")
                    break
            else:
                print(num,"是质数")
        
        else:
            print("1和0,还有负数,都既不是质数,又不是合数!!!")
if a=="18":
    ohmygawd=int(input("要计算绝对值的数:"))
    print(abs(ohmygawd))
if a=="19":
    import math
    lalalalallaa = int(input("要计算以e为底的对数的数:"))
    bibilailai = int(math.exp(lalalalallaa))
    print(bibilailai)
if a=="20":
    import math
    输入 = int(input("要计算cos的数:"))
    print(math.cos(输入))
if a=="21":
    import math
    输入KOKOKO = int(input("要计算acos的数:"))
    print(int(math.acos(输入KOKOKO)))
if a=="22":
    import math
    KOKOhey = int(input("要计算sin的数:"))
    print(int(math.sin(KOKOhey)))
if a=="23":
    import math
    KOheyhaha = int(input("要计算asin的数:"))
    print(int(math.asin(KOheyhaha)))
if a=="24":
    import math
    KOheyhahaha = int(input("要计算tan的数:"))
    print(int(math.tan(KOheyhahaha)))
if a=="25":
    import math
    KOhahahahah = int(input("要计算atan的数:"))
    print(int(math.atan(KOhahahahah)))
if a=="26":
    ys = int(input("被除数:"))
    cs = int(input("除数:"))
    if ys%cs==0:
        print(ys,"能被",cs,"整除")
    else:
        print(ys,"不能被",cs,"整除")
if a=="27":
    import math
    print(math.pi)
if a=="28":
    import math
    print(math.e)
if a=="29":
    n = input("分子:")
    m = input("分母:")
    n=int(n)
    m=int(m)
    for i in range(2,n):
        while(n%i==0 and m%i==0): 
            n=n/i           
            m=m/i
            print("约分结果:",int(n),"/",int(m))
if a=="30":
    sjz = int(input("十进制:"))
    print(oct(sjz))
if a=="31":
    sjzz = int(input("十进制:"))
    print(hex(sjzz))
if a=="32":
    sjzzz = int(input("十进制:"))
    print(bin(sjzzz))
if a=="33":
    for i in range(3):
        x = input("想输入末项请输入mx,首项输入sx,项数输入xs:")
        if x=="sx":
            α = int(input("首项:"))
        if x=="mx":
            β = int(input("末项:"))
        if x=="xs":
            γ = int(input("项数:"))
    a = α+β
    b = a*γ
    c = b/2
    print(c)
if a=="34":
    print("注:这种功能只能用于从1开始的连续自然数的平方和,否则无法套用公式。")
    a = int(input("请输入末项:"))
    b = a+1
    c = 2*a+1
    d = 6
    e = a*b*c/d
    print(e)
if a=="35":
    while True:
        off = input('输入任意字符进入(off退出):')
        
        if off=="off":
            break
        else:
            print(eval(input('Py表达式>>>')))

2020-06-06T18:24:00 点赞:0

达到python1级 中回复

你难道不会用插入代码吗?

print("a")

2020-06-06T18:32:07 点赞:0

改一个字毁掉一个句子 中回复

二十六元一百次方程组有以下缺点:

1.一个方程组中有26条算式;

2.每一个数的求解都是另一个数的一百次方根,不好求解;

3.需要消25个未知数,总计消元次数326次。

听到了这些,你还敢解二十六元一百次方程组吗?

2020-06-06T21:41:54 点赞:0

【水】那个,,,退猫帖大全补充,谁的退猫帖不在这里? 中回复

我也是醉了

 

2020-06-06T21:53:16 点赞:0

【粒子特效】应用于地图中的粒子特效 中回复

还等什么?快去试试吧!

2020-06-07T09:21:17 点赞:1

本人四年级,萌新一枚,求师傅!!!!!!!谢咯! 中回复

我确定我可以

2020-06-07T11:02:38 点赞:0

【代码岛粒子效果】看图 中回复

这个你们自己去看看,挺有意思的

world.querySelectorAll('player').forEach((p) => {   
    Object.assign(p, {
        particleRate: 1000,
        particleSize: [2, 4, 8, 4, 10],
        particleColor: [
            new Box3RGBColor(10, 9, 2),
            new Box3RGBColor(5, 0.25, 0.1),
            new Box3RGBColor(3, 0.05, 0.05),
            new Box3RGBColor(0, 0, 0),
            new Box3RGBColor(0, 0, 0),
        ],
        particleLifetime: 1,
        particleVelocitySpread: new Box3Vector3(2, 2, 2),
    });
});
 

2020-06-08T12:45:56 点赞:0

【计算器】这是计算器代码! 中回复

有任何别的功能的建议评论里说

2020-06-08T12:51:05 点赞:0

【染兮看】语法错误 中回复

自己的沙发自己做

2020-06-08T18:41:51 点赞:0

申请加入工作室 中回复

OK你已经通过了

2020-06-08T18:45:35 点赞:0

【染兮看】语法错误 中回复

center_image

2020-06-08T19:50:42 点赞:3

彩虹字教程 中回复

不行

2020-06-08T20:02:15 点赞:0

幻想工作室招分室啦! 中回复

没人要沙发我就

2020-06-09T19:25:56 点赞:0

据我猜想,幻想应该都是学生党吧 中回复

好吧我是

2020-06-09T19:29:46 点赞:0

【幻想工作室】教程贴:教你如何在同一屏幕上制作多界面 中回复

center_image

2020-06-09T19:48:12 点赞:0

【竞选社区管喵】嗯哼君 渠源 中回复

任期已满

2020-06-13T07:34:38 点赞:0

【看内容】看内容 中回复

空 

2020-06-13T11:55:46 点赞:0

【看内容】看内容 中回复

的  

2020-06-13T11:55:53 点赞:0

谁能答出这题给200源码币(^-^)V 中回复

center_image

2020-06-13T12:01:26 点赞:0

奇妙城市招聘啦!!招聘招聘! 中回复

12

2020-06-13T12:22:35 点赞:0