文章

11

粉丝

70

获赞

0

访问

6.6k

头像
统计单词 题解:n诺风格解法
P1394 华中科技大学
发布于2024年3月22日 16:55
阅读数 621

#include <cstdio>
using namespace std;
#include <string.h>
#include <iostream>
#include <stdlib.h>
int main() {
    char s[105];
    gets(s);
    int sl = strlen(s);
    int cnt = 0;
    for (int i = 0; i < sl; i++) {
        if (s[i] >= 'a' && s[i] <= 'z' || s[i] >= 'A' && s[i] <= 'Z') {//统计单词字母数量
            cnt++;
        }
        else {
            //重点代码:不可能有单词字母个数为0
            if (cnt > 0) {
                cout << cnt << " ";
            }
 &n...

登录查看完整内容


登录后发布评论

暂无评论,来抢沙发