数据对齐+关于strlen()函数
摘要:有时间琢磨一下:https://www.cnblogs.com/bakari/archive/2012/08/27/2658956.html 关于strlen字符数组: https://blog.csdn.net/xc889078/article/details/8910812
阅读全文
2020/7/18编程代码
摘要:1、闰年 算法: 两种情况都是闰年: 第一种、能被4整除但不能被100整除 第二种、能被400整除 代码如下: 1 #include <iostream> 2 #include <string> 3 #include<cstring> 4 #include<stdio.h> 5 using name
阅读全文