首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
b1021专题
PAT B1021 -- 个位数统计
题目如下:LINK 代码如下: #include <iostream>#include <string>#include <map>using namespace std;int main(){string strN;int count[10] = {0,0,0,0,0,0,0,0,0,0};while (cin >> strN){//计算每个个位数的个数for (int i = 0;
阅读更多...