Misaka's Blog

sukisukidaisuki

0%

1.%与/的区别

用%符号,取得的结果是两个数相除后的余数。

用/符号,取得的是两个数相除后的结果取整数部分,并且没有四舍五入的规则。‘

2.C++ 保留两位小数(setprecision(n)的用法)

1
cout<<fixed<<setprecision(n);

要保留几位小数,setprecision(n)的括号里\n就换成几。

注意:a.使用此段代码时,要加上头文件

1
#include<iomanip>

才可正常使用;

b.设置保留两位小数之后,重新声明另一个数,输出依旧显示两位小数。所以语句只需写一次即可。

c.单用setprecision(n)是控制保留几位有效数字的。(setprecision(n)的功能:控制浮点数显示的有效数字个数。)如果要保留的位数太多,数字后面是不会补上0的。

test——测试

虽然早在10月3日,我便创建了我的第一个个人博客(基于hexo,并在GitHub上托管的Blog),但直到10月9日(也就是昨天)我才购买了我的第一个域名(chianchuan.com),个人Blog才算搭建完毕。还有诸多不完善,就等后面来慢慢完善啦!(¬︿̫̿¬☆)哼哼~

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment