题解列表

筛选

1320: 字符串展开

摘要:```cpp #include #include using namespace std; int p1,p2,p3,sub_s,ji=1; string s,s1,s_j; bool f……

1267: A+B Problem

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

python版本题解

摘要:解题思路:条件判断注意事项:这里自己写了一个四舍五入,直接用int也一样参考代码:s = int(input())def round(x):    x = str(x)    if x[x.index……

数字逆序输出(C语言指针)

摘要:解题思路:通过指针解决,通俗易懂注意事项:见代码注释参考代码:#include<stdio.h> //输入10个数字,然后逆序输出。 int main(){ int a[10] = {0};/……