首页 > 其他 > 详细

ural 1038. Spell Checker

时间:2015-08-11 12:21:29      阅读:225      评论:0      收藏:0      [点我收藏+]


就是字符串问题嘛。。。。。

注意出错的方式很少很少,,,,,

我之前的问题都出在了每读入一个新单词的时候不知道之前是单词还是已经结束了

还有句子最后要有结尾

可能有换行符什么的


#include<stdio.h>
#include<string.h>
#include <algorithm>
#include <bits/stdc++.h>
using namespace std;

int tot;
bool over=true;

bool cap(char c)
{
 if(c>=‘A‘&&c<=‘Z‘) return true;
 else return false;
}

bool letter(char c)
{
 if(c>=‘A‘&&c<=‘Z‘||c>=‘a‘&&c<=‘z‘) return true;
 return false;
}

int main()
{
 int i,j,k;
 char c;

 while((c=getchar())!=EOF)
 {
  if(c==‘.‘||c==‘!‘||c==‘?‘) { over=true; continue; }
  if(!letter(c)) continue;
  if(over&&!cap(c)) tot++;
  over=false;
  c=getchar();
  while(letter(c))
  {
   if(cap(c)) tot++;
   c=getchar();
  }
  if(c==‘.‘||c==‘!‘||c==‘?‘) over=true;
 }
 printf("%d\n",tot);
 return 0;
}

版权声明:本文为博主原创文章,未经博主允许不得转载。

ural 1038. Spell Checker

原文:http://blog.csdn.net/zhangwenchi/article/details/47416939

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!