| Run ID | 作者 | 问题 | 语言 | 测评结果 | 时间 | 内存 | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 83762 | sh25_huangse | 统计次数 | C++ | 解答错误 | 0 MS | 240 KB | 215 | 2026-02-01 20:55:21 |
#include<bits/stdc++.h> using namespace std; int main(){ string s; int h=0,u=0; for(int i=0;i<s.size();++i){ ++u; if(s[i]=='.') ++h; } cout<<u<<'\n'<<h; return 0; }