摘要: 控制输出位数cout8.0 ^ 3: pow(8.0, 3); 数字与字符如何拆分text="88折"; text由88折变成88一个汉字占2个字节,length()测的是字节text=text.substr(0,text.length()-2); 控制输出位... 阅读全文
posted @ 2020-01-29 19:08 海月CSDN 阅读(72) 评论(0) 推荐(0) 编辑
摘要: 问题描述 Fibonacci数列的递推公式为:Fn=Fn-1+Fn-2,其中F1=F2=1。 当n比较大时,Fn也非常大,现在我们想知道,Fn除以10007的余数是多少。 输入格式 输入包含一个整数n。 输出格式 输出一行,包含一个整数,表示Fn除以10007... 阅读全文
posted @ 2020-01-29 18:55 海月CSDN 阅读(100) 评论(0) 推荐(0) 编辑
摘要: #include #include using namespace std;int exchange_HB(string num,string &num2){ for(int i=0;i=0;i=i-3) { string temp=num2.substr... 阅读全文
posted @ 2020-01-29 18:51 海月CSDN 阅读(136) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;int exchange_HB(string num,string &num2){ for(int i=0;i=0;i--) { num3=num3+(num2[i... 阅读全文
posted @ 2020-01-29 18:50 海月CSDN 阅读(89) 评论(0) 推荐(0) 编辑
摘要: #include#includeusing namespace std;void exchange_DH(int n){ int i=0,m,num[100]; char hex[16]={'0','1','2','3','4','5','6','... 阅读全文
posted @ 2020-01-29 18:47 海月CSDN 阅读(120) 评论(0) 推荐(0) 编辑