题解列表

筛选

校门外的树

摘要: #include using namespace std; int main() { int L, M, x, y, num = 0; ……

简单点--字符提取

摘要:解题思路:简单思路,没有用自定义注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ char str[100]; gets(str); i……

Sn的公式求和

摘要:解题思路:  循环+pow函数因为每个数的每一位上都是2,故联想到for循环取出每一个数将每一个数存在a中,利用for循环相加注意事项:参考代码:# include <stdio.h># includ……