题解列表
2791: 计算邮资
摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){    int c = 0;    int a;    cin…… 
1783: 星期判断机
摘要:解题思路:注意事项:不要写错单词!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!参考代码:#include <bits/stdc++.h>using namespace std;i…… 
DSTJZ-平均值计算
摘要:参考代码:#include<iostream>
using namespace std;
 
int main()
{
    int arr[10];
    int sum = 0;…… 
python关键字:islower&isupper&isdigit;chr&ord
摘要:问题十分简单。我们要接收一个字符串,遍历它,然后对每个字符做判断基本的代码框架是:string=input()  #接收输入count=0           #计数器for i in string:……