1046: [编程入门]自定义函数之数字后移 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; void func( int a[], int n, int m ) { …… 题解列表 2022年10月11日 0 点赞 0 评论 201 浏览 评分:0.0
1028: [编程入门]自定义函数求一元二次方程 摘要:解题思路:注意事项:保留三位小数参考代码:#include <iostream> #include <cmath> #include <iomanip> using namespace std;…… 题解列表 2022年10月11日 0 点赞 0 评论 274 浏览 评分:0.0
1029: [编程入门]自定义函数处理素数 摘要:解题思路:注意事项:参考代码:#include <iostream> using namespace std; int isprime(int a) { if (a <= 1) r…… 题解列表 2022年10月11日 0 点赞 0 评论 232 浏览 评分:0.0
1031: [编程入门]自定义函数之字符串反转 摘要:解题思路:c++ 有现成的函数注意事项:参考代码:#include <iostream> #include <string> #include <algorithm> using namespa…… 题解列表 2022年10月11日 0 点赞 0 评论 228 浏览 评分:0.0
1032: [编程入门]自定义函数之字符串连接 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { stri…… 题解列表 2022年10月11日 0 点赞 0 评论 279 浏览 评分:0.0
1130: C语言训练-数字母 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 307 浏览 评分:0.0
1042: [编程入门]电报加密 摘要:解题思路:注意事项:参考代码:#include <iostream> #include <string> using namespace std; int main() { st…… 题解列表 2022年10月11日 0 点赞 0 评论 297 浏览 评分:0.0
1196: 去掉空格(7行) 摘要:解题思路:注意事项:c++多一行,就没用了参考代码:#include <stdio.h> int main(){ char ch; while((ch = getchar()) …… 题解列表 2022年10月11日 0 点赞 0 评论 285 浏览 评分:0.0
拆分位数(投机版) 摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ char a,b,c; scanf("%c%c%c",&a,&b,&c); printf("%…… 题解列表 2022年10月11日 0 点赞 0 评论 238 浏览 评分:0.0
自定义函数处理最大公约数与最小公倍数 摘要: #include using namespace std; int fun_a(int a, int b) { int r; w…… 题解列表 2022年10月11日 0 点赞 0 评论 299 浏览 评分:0.0