题解列表

筛选

C语言,递归

摘要:解题思路:C语言,递归注意事项:参考代码:#include <stdio.h>#define n 30double fun(int i){ if(i==1){ return 1; } else{ ……

C语言训练-大、小写问题

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int main(){    getline(cin,s); fo……

C语言训练-数字母

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;string s;int yw;int main(){    getline(cin……

二级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(……

二级C语言-公约公倍

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;long long a,b;int main(){ cin>>a>>b; for(i……