我可想见我这个交换数据将会被广泛使用,而且写成<T>型,
我虽然不知道如何申请专利,则这个专利也属于国家的,国家可以维护这个专利。
void 算交换(int& a, int& b)
{
int ab = a - b;
a -= ab; b += ab;
//cout << ab << endl << a << ends << b;
}
int a = INT_MAX, b = INT_MIN;
cout << a << ends << b << endl;
算交换(a, b);
cout << a << ends <...
void 平均分配箱子数量()
{//缘由https://bbs.bccn.net/redirect.php?tid=508218&goto=lastpost#lastpost
int n = 0, a[100000]{}, x = 0, a1 = 0, a2 = 0;
std::cin >> n;
while (x<n)std::cin >> a[x++]; std::sort(a, a + x);
while (x--) (a1<a2 ? a1 += a[x] : a2 += a[x]);
std::cout << (a1>a2 ? a1 : a2) <...
void 返回日期后一天的日期()
{//缘由https://bbs.bccn.net/thread-507955-1-1.html
int 年 = 0, 月 = 0, 天 = 0, 日 = 0;
scanf_s("%d%d%d", &年, &月, &日);
if (月 == 2){ if ((!(年 % 4) && 年 % 100) || !(年 % 400)) 天 = 29; else 天 = 28; }
else if ((月 <= 7 && 月 % 2) || (月 > 7 && !(月 %...