题解列表

筛选

Cylinder (C语言代码)

摘要:参考代码:#include<iostream>#include<stdio.h>#define PI 3.1415926535898using namespace std;int main(){ do……

Manchester-大、小写问题

摘要:解题思路:输入字符串,然后输出,输出的时候,遇到大写字母,输出对应的小写字母;注意事项:别这样写:输出超限,我的理解是,题目明确100以内字符,测试数据有超过100个字符的;不过种思路省空间:#inc……

数列排序 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,a[10],i,j,k; scanf("%d",&n); while(n--) {  int b[1……