题解列表

筛选

单词个数统计(C语言)

摘要://当前字符为字母且下个字符不是字母时单词数加一 #include int main() { char a[80]; gets(a); int k=0, len=s……

超好懂的求一元二次方程

摘要:解题思路:取三个函数来计算三种情况,再一个函数来判断b*b-4*a*b与0的关系进那种情况;注意事项:了解如何计算二元一次方程的根,过程很简单;参考代码:#include<stdio.h>#inclu……

1046简简单单

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main() {    int m,n,a[200],i=0,j=0,c=0;    sca……

挺简单的一个题

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