题解列表

筛选

1083: Hello, world!

摘要:直接用 %c 输出 ASCII 码对应的字符,注意读入换行符时输出空格。#include <bits/stdc++.h> using namespace std; int main() { ……

1093: 字符逆序

摘要:直接用 reverse 函数将字符串逆序。#include <bits/stdc++.h> using namespace std; int main() {     string s; ……

1206: 字符串问题

摘要:这题就是字符串逆序,使用 reverse 函数。#include<bits/stdc++.h> using namespace std; int main(){     string s; ……

入门]自定义函数之数字后移

摘要:解题思路:解题思路:其实重点就再最后一条printf语句中的取余哪里,其余的读入数据就不多说了,通过for循环读入即可;来看一下这个运算符 % 的魅力吧。int a[10]={1,2,3,4,5,6,……

题解 1161: 回文数(二)(python)

摘要:def n_to_ten(n,m):     j = 0     sum =0     for i in str(m)[::-1]:         sum += int(i)*n**j  ……

1129: C语言训练-排序问题<2> 快速排序法

摘要:解题思路:采用快速排序法,采用最左边的数为基准数,将小于等于基准点的数全部放到基准点右边,将大于等于基准点的数全部放到基准点左边,实现从大到小的排序注意事项:相比冒泡排序,每次交换是跳跃式的,最差情况……