[java输入字符串统计字母单词数字句子个数]1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 importjava.util.*; classTest{ publicstaticvoidmain(String[] args){ Scanner s=newScanner(System.in); String str=" "+s.nex...+阅读
#include
using namespace std;
int main()
{
cout int count = 10;
char c;
int NcharS , Nnum , NcharB;
NcharS = Nnum = NcharB = 0;
while(count--)
{
cin >>c;
if (c >= 'a' & c NcharS++;
else if (c >= 'A' & c NcharB++;
else if (c >= '0' & c Nnum++;
else{}
}
cout cout cout cout }
以下为关联文档:
Java键盘输入一个字符串分别统计出该字符串中所有数字大写英参考代码如下: #include<stdio.h> int main() { char ch; int A,a,n,other; A=a=n=other=0; while((ch=getchar())!='\n'){ if(ch>='a'&ch<='z') ++a; else if(ch>='A'&ch<='...
输入一行字符统计该行字符包含英文字母空格数字和其他字符的#include<stdio.h> void main() { int word,digital,other,space; word=digital=other=space=0; char string[20],*p; printf("Input:"); gets(string);// //*string=0; p=str...
c输入一行字符分别统计出英文字母空格数字和其他字符的个数 // 错误1: 标准C++除了兼容, 一般是不是用字符数组的, 而是用string // 错误2: cin >> a 这种方式并不能读入空格 // 错误3:a[j]<='z'&&a[j]>='a'||a[j]<='Z'&&a[j]>='A'这样...
输入一行字符统计大写字母小写字母数字个数//输入一行字符,统计大写字母,小写字母,数字个数 #include "iostream.h" //统计字符串source中大写字母、小写字母和数字的个数 void stat(char *source) { int upper = 0; int l...
输入一行字符分别统计其中的英文大写字母小写字母数字字符和#include<stdio.h> main() { int i = 0,di=0,ll=0,ul=0,el=0; char a[100]; printf("please input string:\n"); gets(a); while(a[i]) { if(a[i]>='a' & a[i]<='z') ll++; el...
C程序:循环输入字符分别统计出每次循环英文字母空格数字#include <stdio.h> void count(char c); int letters=0,space=0,digit=0,others=0; /*定义为全局变量*/ main() {char c; printf("you can input your sentences.\n"); /*放在F...
C程序:输入若干字符分别统计数字字符的个数英文字母的个数#include "stdio.h" void main() { char s; int i=0,j=0,k=0,m=0,da=0,xiao=0; printf("please input the string\n"); while((s=getchar())!='\n') /*循环从键盘读入字符直到一...
汇编程序分类统计字符串中大小写字母数字其他字符个数;分类统计字符串中大小写字母,数字,其他字符个数 ;定义字符串,不需要键盘输入,统计结果依次保存到X1,X2,X3,X4中 data segment buf db 'asdg123456,^&%$#$' X1 db 0 X2 db 0 X3 db...
汇编从键盘输入一串字符分别统计其中字母数字和其他字符的没代码怎么看。。。 附上我的:(没调) program easy; var st:string; a:array [1..3] of longint; i:longint; begin readln(st); fillchar(a,sizeof(a),0); for i:=1 to length...