题解列表

筛选

统计字母个数 (C++代码)

摘要:解题思路:注意事项:参考代码:#include<iostream> #include<cstdio> using namespace std; int main() { char ch;……

小O的图案 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int n,k,i,j,x; while(scanf("%d",&n)!=EOF) { k=2*n-1; x……