代码拉取完成,页面将自动刷新
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <assert.h>
//int main()
//{
// int money = 0;
// scanf("%d", &money);
// int s = money;
// int count = 0;
// int n = 1;
// while (s % 2 != 0)
// {
// s = s / 2;
// count += s;
// }
// printf("%d", count + money + (s - 1));
// return 0;
//}
//int main()
//{
// int arr[] = { 1, 2, 3, 5, 9, 6 };
// int se = sizeof(arr) / 4;
// int i = 0;
// int j = 0;
// int s = 0;
// for (i = 0;i < se; i++)
// {
// if (arr[i] % 2 != 0)
// {
// s = arr[j];
// arr[j] = arr[i];
// arr[i] = s;
// j++;
// }
// }
// for (i = 0; i < se; i++)
// printf("%d ", arr[i]);
// return 0;
//}
//int MyStrlen(char const *str)
//{
// assert(str != NULL);
// int count = 0;
// while (*str++ != '\0')
// count++;
// return count++;
//}
//int main()
//{
// char ch[20] ="hello bit";
// printf("%d", MyStrlen(ch));
// return 0;
//}
//问题代码(越界导致的死循环)
//#include <stdio.h>
//int main()
//{
// int i = 0;
// int arr[] = { 1,2,3,4,5,6,7,8,9,10 };
// for (i = 0; i <= 12; i++)
// {
// arr[i] = 0;
// printf("hello bit\n");
// }
// return 0;
//}
//char* MyStrcpy(char* str1, const char * str2)
//{
// assert(str1 && str2);
// char* ret = str1;
// while (*str1++ = *str2++)
// ;
// return ret;
//}
//
//int main()
//{
// char ch1[20] = "";
// char ch2[] = "hello bit";
// printf("%s",MyStrcpy(ch1, ch2));
// return 0;
//}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。