该文被密码保护。 阅读全文
摘要:
建立一个结构体储存用户输入的id和密码,将id和密码进行输入的验证 阅读全文
摘要:
。 阅读全文
摘要:
把字符串里的各个数字串的长度和当前最大的数字串比较,最终得到最大的数字串为哪个数字串,记下它在字符串里的位置p_ dest,和它的长度cnt 输出时,从地址p_dest往后输出cnt个字符 阅读全文
摘要:
#include using namespace std; //找到字符串中最长的数字串 void find_max_num_string(char *str,char max[] ) { char c; char num[50] = { "\0" }; int i=0; int j=0; int new_sign= 0; while(1) {... 阅读全文
摘要:
//判断a串是否含有b串的所有字符 //前面步骤相同 for(int i=0;i=0) return true; } #include #include using namespace std; //判断两个字符串是否是变位词 bool anagram(string str1, string str2) { in... 阅读全文