[编程入门]结构体之时间设计--傻瓜式写法(c语言) 摘要:解题思路:注意事项:参考代码:#include <stdio.h> struct date{ int year; int month; int day; }; in…… 题解列表 2023年01月01日 0 点赞 0 评论 265 浏览 评分:9.9
用两个变量解决等差数列求和 摘要:解题思路:用两个变量来解决等差数列求和的问题注意事项:注意两个变量之间的关系参考代码:#include<stdio.h>int main(){ int n,i,sum1=2,sum2=0; …… 题解列表 2023年01月01日 0 点赞 0 评论 354 浏览 评分:9.9
1200: 回文串 摘要:```cpp #include #include using namespace std; int main() { char ch[255]; bool falg=tr…… 题解列表 2023年01月01日 0 点赞 0 评论 702 浏览 评分:9.9
1201: 回文数(一) 摘要:```cpp #include #include using namespace std; bool is_huiwen(int n) { char a[100]; bo…… 题解列表 2023年01月01日 0 点赞 0 评论 579 浏览 评分:9.9
1202: 多输入输出练习1 摘要:```cpp #include using namespace std; int main() { int x,max; while(cin>>x) { …… 题解列表 2023年01月01日 0 点赞 0 评论 494 浏览 评分:9.9
1203: 多输入输出练习2 摘要:注意事项:这里的PI必须要保留4位多一位或少一位都会出错 ```cpp #include #include #define PI 3.1415 using namespace std; i…… 题解列表 2023年01月01日 0 点赞 0 评论 434 浏览 评分:9.9
字符串分类统计 十分十分十分简单的方法(c语言) 摘要:解题思路:1.输出字母个数2.输出数字个数3.输出空格个数4.输出其他字符个数注意事项:参考代码:#include<stdio.h> #include<string.h> void fun(cha…… 题解列表 2023年01月01日 0 点赞 0 评论 369 浏览 评分:9.9
1204: 大小写转换 摘要:放心,题目的End of file其实没什么用,可以不处理 ```cpp #include #include using namespace std; int main() { …… 题解列表 2023年01月01日 0 点赞 0 评论 533 浏览 评分:9.9
运用指针交换两个整型数字 摘要:解题思路:注意事项:参考代码:#include<stdio.h>void swap(int* a, int* b){ int t = *a;//引入中间变量,将*a的值保存到t中 *a = *b; *…… 题解列表 2023年01月01日 0 点赞 0 评论 581 浏览 评分:9.9
完数的判断——题解(C语言代码) 不用指针不用数组,仅for循环嵌套即可 摘要:解题思路:需要用到两个临时变量i j;j用来排1~n的所有整数,i用来排1~j的所有整数(以获取其所有可能的因数)。注意事项:注意b一定要在合适的位置清零参考代码:#includeint main(v…… 题解列表 2023年01月02日 0 点赞 0 评论 419 浏览 评分:9.9