[YTU]_1055 (输入字符串以及输出)
生活随笔
收集整理的這篇文章主要介紹了
[YTU]_1055 (输入字符串以及输出)
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
Description
編寫一函數,由實參傳來一個字符串,統計此字符串中字母、數字、空格和其它字符的個數,在主函數中輸入字符串以及輸出上述結果。 只要結果,別輸出什么提示信息。
Input
一行字符串
Output
統計數據,4個數字,空格分開。
Sample Input
!@#$%^QWERT??? 1234567
Sample Output
5 7 4 6 #include <iostream> using namespace std; void tongji(char*p,int *q) { (*(q+3))=(*(q+2))=(*(q+1))=*q=0;for(;*p!='\0';p++){if((*p>='a'&&*p<='z')||(*p>='A'&&*p<='Z'))(*q)++;else if(*p>=48&&*p<=57)(*(q+1))++;else if(*p==' ')(*(q+2))++;else(*(q+3))++;} } int main() {char str[100];int i,a[4]={0};cin.getline(str,99);tongji(str,a);for(i=0; i<4; i++)cout<<a[i]<<" ";cout<<endl;return 0; }#include <iostream> using namespace std; void tongji(char *p,int *aa) {int m=0,n=0,j=0,k=0;for(int i=0;*(p+i)!='\0';i++){if((*(p+i)>='a'&&*(p+i)<='z')||(*(p+i)>='A'&&*(p+i)<='Z')){m++;*aa=m;}else if(*(p+i)>='0'&&*(p+i)<='9'){n++;aa[1]=n;}else if(*(p+i)==' '){j++;aa[2]=j;}else{k++;aa[3]=k;}} } int main() {char str[100];int i,a[4];cin.getline(str,99);tongji(str,a);for(i=0;i<4;i++)cout<<a[i]<<' ';cout<<endl;return 0; }
編寫一函數,由實參傳來一個字符串,統計此字符串中字母、數字、空格和其它字符的個數,在主函數中輸入字符串以及輸出上述結果。 只要結果,別輸出什么提示信息。
Input
一行字符串
Output
統計數據,4個數字,空格分開。
Sample Input
!@#$%^QWERT??? 1234567
Sample Output
5 7 4 6 #include <iostream> using namespace std; void tongji(char*p,int *q) { (*(q+3))=(*(q+2))=(*(q+1))=*q=0;for(;*p!='\0';p++){if((*p>='a'&&*p<='z')||(*p>='A'&&*p<='Z'))(*q)++;else if(*p>=48&&*p<=57)(*(q+1))++;else if(*p==' ')(*(q+2))++;else(*(q+3))++;} } int main() {char str[100];int i,a[4]={0};cin.getline(str,99);tongji(str,a);for(i=0; i<4; i++)cout<<a[i]<<" ";cout<<endl;return 0; }#include <iostream> using namespace std; void tongji(char *p,int *aa) {int m=0,n=0,j=0,k=0;for(int i=0;*(p+i)!='\0';i++){if((*(p+i)>='a'&&*(p+i)<='z')||(*(p+i)>='A'&&*(p+i)<='Z')){m++;*aa=m;}else if(*(p+i)>='0'&&*(p+i)<='9'){n++;aa[1]=n;}else if(*(p+i)==' '){j++;aa[2]=j;}else{k++;aa[3]=k;}} } int main() {char str[100];int i,a[4];cin.getline(str,99);tongji(str,a);for(i=0;i<4;i++)cout<<a[i]<<' ';cout<<endl;return 0; }
總結
以上是生活随笔為你收集整理的[YTU]_1055 (输入字符串以及输出)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: [YTU]_2718 (求最高同学位置)
- 下一篇: [YTU]_2018 ( 约瑟夫问题)