题解列表
C语言思路简单,易懂!!! 理解万岁
摘要:解题思路:较长的字符串减去共有的字符就为答案!!!注意事项:参考代码:#include <stdio.h>#include <string.h>#include <math.h>int main ()……
Python才是最牛的,其他的就是Shit!
摘要:import math
print(math.factorial(int(input())))Python 是一种易学易用且功能强大的高级编程语言,具有许多独特的优点,使其成为开发者和数据科学家们的……
C语言思路简单,易懂!!! 理解万岁
摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main (){ int n,m,j=0; char a[100000]; //数组稍微大点,不然会溢出错误!!……
1869: 鸡兔同笼(多组输入)
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>
using namespace std;
int main ()
{
int m,n;
int ……
1872: 春夏秋冬季节判断
摘要:解题思路:注意事项:参考代码:#include<iostream>
using namespace std;
int main()
{
int n;
cin>>n;
……