上一页 1 ··· 16 17 18 19 20
摘要: 用string串来处理这个题很方便#include#includeusing namespace std;string cipher(string &s);//引用为参数,此函数返回一个string类的字符串int main(){string s1, s2, s3,s4;while (1){getl... 阅读全文
posted @ 2015-03-01 16:19 曹孟德 阅读(237) 评论(0) 推荐(0) 编辑
摘要: 打表找规律,发现是n%4==2就是yes,否则是no#includeusing namespace std;int main(){int n;while (cin >> n){if (n % 4 == 2)cout << "yes" << endl;elsecout << "no" << endl;... 阅读全文
posted @ 2015-03-01 15:41 曹孟德 阅读(179) 评论(0) 推荐(0) 编辑
摘要: 计算n个数的最小公倍数,可用欧几里得算法计算两个数字的最大公约数,再计算两个数最小公倍数有了2个数最小公倍数算法就简单了,即为:计算第一和第二个数得到最小公倍数lc,再计算lc和第三个数最小公倍数......#include#include#includeusing namespace std;in... 阅读全文
posted @ 2015-03-01 15:23 曹孟德 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 9的余数定理:一个数各位数字的总和除以9的余数与它本身除以9的余数同等大数问题:防止大数,用字符串来存入数据,再转化为数字#include#includeusing namespace std;int main(){int N,i;string s;while (cin>>s){if (s[0] -... 阅读全文
posted @ 2015-03-01 14:51 曹孟德 阅读(163) 评论(0) 推荐(0) 编辑
摘要: 分清上升停留下降一步步来就是了#include#includeusing namespace std;int main(){int N,n,i,sumtime;while (cin >> N&&N != 0){sumtime = 0;vectorv;for (i = 0; i > n; i++)v.... 阅读全文
posted @ 2015-03-01 14:35 曹孟德 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 字符串统计问题,统计每个字符串的次数,输出出现次数最多的字符串#include#include#includeusing namespace std;int main(){int N,i,redex;while (cin >> N&&N!=0){string str[1000];int number... 阅读全文
posted @ 2015-03-01 14:17 曹孟德 阅读(340) 评论(0) 推荐(0) 编辑
摘要: #include#include#includeusing namespace std;typedef vector vt;int main(){int i;vt v1(10); //定义向量10个元素,注意每个元素初始化为了0for (i = 0; i ::iterator it = v2.beg... 阅读全文
posted @ 2015-03-01 12:47 曹孟德 阅读(250) 评论(0) 推荐(0) 编辑
摘要: //clock()函数为c中,捕捉从程序开始运行到clock运行的时间//时间单位为clock tick,即为时钟打点#include#include#include//包含头文件(C中的写法)using namespace std;clock_t start, stop; //clock_t是cl... 阅读全文
posted @ 2015-03-01 10:19 曹孟德 阅读(586) 评论(0) 推荐(1) 编辑
上一页 1 ··· 16 17 18 19 20