UVA 1225 Digit Counting(c++)(類比)

來源:互聯網
上載者:User

標籤:ring   一起   c++   bsp   組成   printf   比較   col   str   

題目大意就是將前n個數字按順序寫在一起,然後統計這整個由數字組成的串中0-9各出現了幾次。代碼如下,比較容易理解。

#include <iostream>#include <string>#include <cstdio>#include <cstring>#define maxn 1000000+10#include <ctype.h>using namespace std ; int main(){    int n ;    cin >> n ;    while ( n -- ){        int k ;        cin >> k ;        int num_1=0,num_2=0,num_3=0,num_4=0,num_5=0,num_6=0,num_7=0,num_8=0,num_9=0,num_0=0 ;        for ( int i = 1 ; i <= k ; i ++ ){            int t = i ;            while( t > 0 ){                int temp = t % 10 ;                if ( temp == 1 ) num_1 ++ ;                if ( temp == 2 ) num_2 ++ ;                if ( temp == 3 ) num_3 ++ ;                if ( temp == 4 ) num_4 ++ ;                if ( temp == 5 ) num_5 ++ ;                if ( temp == 6 ) num_6 ++ ;                if ( temp == 7 ) num_7 ++ ;                if ( temp == 8 ) num_8 ++ ;                if ( temp == 9 ) num_9 ++ ;                if ( temp == 0 ) num_0 ++ ;                t /= 10 ;            }        }        printf("%d %d %d %d %d %d %d %d %d %d\n",num_0,num_1,num_2,num_3,num_4,num_5,num_6,num_7,num_8,num_9) ;    }    return 0 ;}

 

UVA 1225 Digit Counting(c++)(類比)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.