hdu 1860 統計字元

來源:互聯網
上載者:User

標籤:des   os   io   for   re   c   

 

Problem Description統計一個給定字串中指定的字元出現的次數Input測試輸入包含若干測試案例,每個測試案例包含2行,第1行為一個長度不超過5的字串,第2行為一個長度不超過80的字串。注意這裡的字串包含空格,即空格也可能是要求被統計的字元之一。當讀到‘#‘時輸入結束,相應的結果不要輸出。Output對每個測試案例,統計第1行中字串的每個字元在第2行字串中出現的次數,按如下格式輸出: c0 n0 c1 n1 c2 n2 ... 其中ci是第1行中第i個字元,ni是ci出現的次數。Sample Input
ITHIS IS A TESTi ngthis is a long test string#
Sample Output
I 2i 3  5n 2g 2 註:第2個測試案例中,空格也是被統計的字元之一。


#include<stdio.h>

#include<string.h>

int main()

{

    int i,j,m[101]={0},l,k;  

    char c[6],n[81];

 while(gets(c)&&c[0]!=‘#‘)

 {  

 gets(n);  

 l=strlen(c);

  k=strlen(n);

  for(i=0;i<101;i++)

  {   

 m[i]=0;

  }

  for(i=0;i<l;i++)   

 for(j=0;j<k;j++)

   if(n[j]==c[i])  

  {  

   m[i]++;

   }  

  for(i=0;i<l;i++)

    printf("%c %d\n",c[i],m[i]);

 }

}

 



聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.