题解列表

筛选

1083: Hello, world!

摘要:```cpp #include using namespace std; int main() { int a; while(cin>>a) cout……

三个数字排大小,忙人解法^-^。

摘要:解题思路:多次使用if   else嵌套来判断三个数的大小。注意事项:无。参考代码:#include<stdio.h>int main(){    int a,b,c,max,min,zh;    s……

应该最简单了吧

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){    int a,b;    char str[100],str2[100]……

两次递归,Sn,An

摘要:解题思路:注意事项:参考代码:#include<stdio.h> //求An的值 void An(int n, int i) { if (n==1) { printf("sin(%……