文章
72
粉丝
142
获赞
5
访问
57.8k
#include <stdio.h>
#include <stdlib.h>
#include <iostream>
#include <math.h>
#include <string.h>
#include <string>
using namespace std;
char s[1005];
int main(){
while(gets(s)){
int flag=1;
int length=strlen(s);
for(int i=0;i<length;i++){
if(flag==1&&s[i]!=' '&&s[i] == '\n' && s[i] == '\t' && s[i] =='\r'){
if(s[i]>='a'&&s[i]<='z')
s[i]-=32;
flag=0;
}else if(s[i] == ' ' || s[i] == '\n' || s[i] == '\t' || s[i] =='\r'){
 ...
登录后发布评论
把else if的else去掉