08 2021 档案

摘要:// //自写函数实现字符串比较 #include "stdafx.h" #include "stdio.h" #include "stdlib.h" //#include "string.h" int mystrlen(char *pstr) { int num=0; while(*pstr!=' 阅读全文
posted @ 2021-08-24 15:47 admrty 阅读(130) 评论(0) 推荐(0)
摘要:1 // mystrchr.cpp : Defines the entry point for the console application. 2 // 3 4 #include "stdafx.h" 5 #include "stdio.h" 6 #include "stdlib.h" 7 #in 阅读全文
posted @ 2021-08-24 15:13 admrty 阅读(120) 评论(0) 推荐(0)
摘要:1 // 2 3 #include "stdafx.h" 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 int main(int argc, char* argv[]) 8 { 9 // char *pchar="1calc"; 10 // 11 // 阅读全文
posted @ 2021-08-22 12:35 admrty 阅读(89) 评论(0) 推荐(0)
摘要:1 #include "stdafx.h" 2 #include <stdlib.h> 3 #include <stdio.h> 4 5 int main(int argc, char* argv[]) 6 { 7 8 //char chArry[10]="calc"; //数组型 9 // cha 阅读全文
posted @ 2021-08-21 20:57 admrty 阅读(46) 评论(0) 推荐(0)