加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
2-24.c 1.38 KB
一键复制 编辑 原始数据 按行查看 历史
王振宇 提交于 2022-02-24 11:56 . homework
#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;
//}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化