题解列表
[编程入门]自定义函数之数字后移
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int N,temp,swapnum; vect……
[编程入门]自定义函数求一元二次方程
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;float delta_func(float a,float b,float c){……
C语言训练-大、小写问题
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){ getline(cin,s); fo……
二级C语言-计负均正
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,s;double t,t1;int main(){ for(……
1196: 去掉空格
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){ while(getline(……
自定义函数之字符提取
摘要:#include
#include
void aa();
void main()
{
aa();
}
void aa()
{
char a[100],b[1……
二级C语言-公约公倍
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; for(i……