程式碼:
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include<iostream> | |
#include <string> | |
#include <cstring> | |
#include <cstdlib> | |
#include <cstdio> | |
using namespace std; | |
int a[10]; | |
void Compute(int n){ | |
int x,i; | |
char s[10]; | |
for(i=0;i<10;i++) | |
a[i] = 0; //先把陣列歸0 | |
for(i=1;i<=n;i++){ | |
sprintf(s,"%d",i); //將數字轉成字串 | |
for(int j=0;j<strlen(s);j++) | |
a[s[j]-48]++; //因為轉成字串後事ASCII碼 所以要-48才會是正確的數字 | |
} | |
} | |
int main(){ | |
int T,n; | |
cin>>T; | |
while(T--){ | |
cin>>n; | |
Compute(n); | |
for(int i=0;i<9;i++) | |
cout<<a[i]<<" "; | |
cout<<a[9]<<endl; | |
} | |
} |