
Lv.1
只是喜欢Python而已……徒弟:程序侯
签名:只是喜欢Python而已…… 徒弟:程序侯
在 swift基础教程 第2章 常量与变量 中回复
C:\Users\HP>python
Python 3.8.4 (tags/v3.8.4:dfa喵5a, Jul 13 2020, 16:30:28) [MSC v.1926 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> a:int = 2333
2020-08-20T19:16:10 点赞:0
在 【社区处罚公示】再强调一次:不!要!尝!试!在!MC!和!MN!中!引!!战!! 中回复
究竟盗版了吗?请给出证据(双方又要思考你们说的盗版的理由!)
2020-08-23T19:37:36 点赞:0
在 【求助】谁会用python代码给论坛发评论? 中回复
会有https://api.codemao.cn/web/forums/posts/33喵30/replies
2020-08-23T20:09:01 点赞:0
在 【求助】【box3】如何在JavaScript里生成随机数? 中回复
var x = Math.round(Math.random()*(122-4)+4)2020-08-23T20:24:34 点赞:0
在 【编程爵士大论坛】有话就说 中回复
#include <iostream>
using namespace std;
int main(){
cout << "233333333";
main();
}2020-08-24T20:53:54 点赞:0
在 【欢迎讨论】0.999……等于1吗? 中回复
#include <iostream>
using namespace std;
const double One = 1;
int main()
{
double Point999999 = 0.9;
double Emmm = 0.09;
while(One-Point999999 >=1e-7 )
{
Point999999 += Emmm;
Emmm /= 10;
cout << One << "-" << Point999999 << "=" << One-Point999999 << endl;
}
cout << "最后极限趋于0" <<endl;
cout << "0.999999.... == 1,证明完毕!";
}2020-08-24T21:20:07 点赞:1