题解列表

筛选

二维数组转置

摘要:解题思路:注意事项:参考代码:#include<stdio.h>int main(){ int a[3][3],b[3][3]; int i,j; for(i=0;i<3;i++) { for(j=……

Python题解阶乘求和

摘要:解题思路:注意事项:参考代码:s,k=1,1n=int(input())for i in range(2,n+1):    k*=i    s+=kprint(s)……

Python题解字符串分类统计

摘要:解题思路:注意事项:参考代码:zm,sz,kg,qt=0,0,0,0s=input()for c in s:    if c>=&#39;a&#39; and c<=&#39;z&#39; or c>……

2544: N以内累加求和,C++

摘要:解题思路:do while求累加注意事项:参考代码:#include <iostream>using namespace std;int main(){    int n;    int sum=0;……