题解列表
感觉你们应该可以看懂,有两种药方
摘要:解题思路:注意事项:参考代码://方法一:#include <stdio.h>#include<string.h> void q(char x[100],int y[4]){ int len=0; ……
题解 2913: 整数去重 菜鸟解法
摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int i,j,n; scanf("%d",&n); int a[n]; for(i=0……
核电站问题(C语言)
摘要:解题思路:定义了一个名为 fun 的函数来计算一个与给定整数 n 相关的数值,并在 main 函数中通过输入 n 来调用 fun 函数并输出结果在 fun 函数中,对于 n ……
自定义函数求一元二次方程
摘要:#include<bits/stdc++.h>
using namespace std;
int main()
{
double a,b,c,x1,x2;cin>>a>>b>>c;
……
2749: Hello, World!题解
摘要:解题思路:注意事项:参考代码:#includeusing namespace std;int main(){ cout << "Hello world!" << endl; return ……