题解列表
1046: [编程入门]自定义函数之数字后移
摘要:解题思路:注意事项:参考代码:#include <iostream>
using namespace std;
void func( int a[], int n, int m )
{
……
1028: [编程入门]自定义函数求一元二次方程
摘要:解题思路:注意事项:保留三位小数参考代码:#include <iostream>
#include <cmath>
#include <iomanip>
using namespace std;……
1029: [编程入门]自定义函数处理素数
摘要:解题思路:注意事项:参考代码:#include <iostream>
using namespace std;
int isprime(int a)
{
if (a <= 1) r……
1031: [编程入门]自定义函数之字符串反转
摘要:解题思路:c++ 有现成的函数注意事项:参考代码:#include <iostream>
#include <string>
#include <algorithm>
using namespa……
1032: [编程入门]自定义函数之字符串连接
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <string>
using namespace std;
int main()
{
stri……
1130: C语言训练-数字母
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <string>
using namespace std;
int main()
{
st……
1042: [编程入门]电报加密
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <string>
using namespace std;
int main()
{
st……