? ? ? ? 看看CSDN论坛,发现我已经好久没有写博客了,其实我可以找出来很多不写博客的理由,但无法欺骗自己——就是因为我的懒惰!
? ? ? ? 元旦节我本来打算回家疯狂的学习,疯狂的敲代码,然后狂写博客——到最后甚至连书都没有翻开过……确实忍俊不禁了。
? ? ? ? 既然已经谢罪了,那么就要避免重蹈覆辙,所以说我一定要每天写代码,并且分享到博客中,新年的目标就是天天写代码,天天进步!
#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include<math.h>
//int main()
//{
// int n;
// scanf("%d", &n);
// int i = 0;
// int sum = 0;
// while (n)
// {
// int temp = 0;
// if ((n % 10) % 2 == 0)
// {
// temp = 0;
// }
// else
// {
// temp = 1;
// }
// sum += temp * pow(10, i);
// i++;
// n /= 10;
// }
// printf("%d", sum);
//
// return 0;
//}
//#include <stdio.h>
//#include<math.h>
//int main()
//{
// int x1, y1;
// scanf("%d %d", &x1, &y1);
// int x2, y2;
// scanf("%d %d", &x2, &y2);
// printf("%d", ((int)pow((x1 - x2), 2) + (int)pow((y1 - y2), 2)));
//
// return 0;
//}
//#include <stdio.h>
//#include<math.h>
//int main()
//{
// int a, b;
// scanf("%d %d", &a, &b);
// int n = a + b;
// int sum=0;
// int i = 0;
// int temp;
// while (n)
// {
// temp = n % 10;
// sum += temp * pow(10, i);
// i++;
// n /= 10;
// }
// printf("%d", sum);
//
//
// return 0;
//}
//#include<stdio.h>
///*********Begin*********/
//int max(int s[], int n)
//{
// int max = s[0];
// int i = 0;
// for (i = 0; i < n; i++)
// {
// if (s[i + 1] > max)
// {
// max = s[i + 1];
// }
// }
// return max;
//}
//
//
///*********End**********/
//int main(void)
//{
// int n, s[110];
// scanf("%d", &n);
// for (int i = 0; i < n; i++)
// scanf("%d", &s[i]);
// int ans;
// /*********Begin*********/
// ans = max(s, n);
// /*********End**********/
// printf("%d", ans);
// return 0;
//}
//void fun(int* s)
//{
// static int j = 0;
// do
// {
// s[j] += s[j + 1];
// } while (++j < 2);
//}
//int main()
//{
// int i = 0;
// int a[10] = { 1,2,3,4,5 };
// for (i = 1; i < 3; i++)
// {
// fun(a);
// }
// for (i = 1; i < 5; i++)
// {
// printf("%d", a[i]);
// }
// printf("\n");
// return 0;
//}
void fun(char* s[], int n)
{
char* t;
int i, j=0;
for (i = 0; i < n - 1; i++)
{
for (j = j + 1; j < n; j++)
{
if (strlen(s[i]) > strlen(s[j]))
{
t = s[i];
s[i] = s[j];
s[j] = t;
}
}
}
}
int main()
{
char* ss[] = { "bcc","bbcc","xy","aaaacc","aabcc" };
fun(ss, 5);
printf("%s,%s\n", ss[0], ss[4]);
return 0;
}