自定义函数之数字分离 摘要: #include #include using namespace std; void fun(int i) { int a, b, c, …… 题解列表 2022年10月11日 0 点赞 0 评论 352 浏览 评分:0.0
自定义函数之字符提取 摘要: #include #include using namespace std; void fun(char a[],char b[]) { i…… 题解列表 2022年10月11日 0 点赞 0 评论 370 浏览 评分:0.0
自定义函数之字符串连接 摘要: #include using namespace std; void fun(string s1, string s2) { cout s1 >> …… 题解列表 2022年10月11日 0 点赞 0 评论 315 浏览 评分:0.0
自定义函数之字符串反转 摘要: #include #include using namespace std; void fun(char a[], char b[]) { …… 题解列表 2022年10月11日 0 点赞 0 评论 330 浏览 评分:0.0
二维数组的转置 摘要: #include using namespace std; void fun() { int a[3][3], i, j,t; for (…… 题解列表 2022年10月11日 0 点赞 0 评论 377 浏览 评分:0.0
自定义函数求一元二次方程 摘要: #include #include #include using namespace std; float a, b, c, d, x1, x2; …… 题解列表 2022年10月11日 0 点赞 0 评论 331 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要: #include using namespace std; int fun_a(int a, int b) { int r; w…… 题解列表 2022年10月11日 0 点赞 0 评论 318 浏览 评分:0.0
拆分位数(投机版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a,b,c; scanf("%c%c%c",&a,&b,&c); printf("%…… 题解列表 2022年10月11日 0 点赞 0 评论 272 浏览 评分:0.0
题解 2771:大象喝水(C代码) 摘要:解题思路: 20*1000/v(v为小圆桶体积),只要实现向正无穷取整就行。两种思路:1、通过ceil函数;2、通过(int)取整。注意事项: ceil函数返回的double型;而(int)是向零取整…… 题解列表 2022年10月11日 0 点赞 3 评论 1504 浏览 评分:9.9
1196: 去掉空格(7行) 摘要:解题思路:注意事项:c++多一行,就没用了参考代码:#include <stdio.h> int main(){ char ch; while((ch = getchar()) …… 题解列表 2022年10月11日 0 点赞 0 评论 312 浏览 评分:0.0