#include<iostream> using namespace std; int main() { char word[100]; int count=0,i=0; cin.getline(word,100); while(word[i]!='\0') { if(word[i]>='a'&&word[i]<='z'||word[i]>='A'&&word[i]<='Z') count++; i++; } cout<<count<<endl; return 0; }
刚开始接触C++,欢迎大家批评指正!!
0.0分
2 人评分
#include<stdio.h> #include<iostream> using namespace std; int main(){ char a; int temp=0; while((a=getchar())!='\0') { if(a>=65&&a<=90||a>=97&&a<=122) { temp++; } } cout<<temp; } 这个为什么超时了,求解
printf基础练习2 (C语言代码)浏览:796 |
Minesweeper (C语言描述,蓝桥杯)浏览:1176 |
sizeof的大作用 (C语言代码)浏览:1591 |
A+B for Input-Output Practice (III) (C语言代码)浏览:594 |
关于float,double变量的几点说明浏览:1926 |
2006年春浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:383 |
简单的a+b (C语言代码)浏览:491 |
C语言程序设计教程(第三版)课后习题5.7 (C语言代码)浏览:593 |
简单的a+b (C语言代码)浏览:617 |
小O的乘积 (C++代码)浏览:796 |
余小C 2020-03-02 21:48:36 |
a=getchar())!=' ',a不是True就False(0). 要分开写哦