Sicily 1608

来源:互联网 发布:开淘宝店需要进货吗 编辑:程序博客网 时间:2024/06/05 13:30

水题。。

就不放题目了。

// Copyright <lijiancheng> [2014]// Sicily 1608#include <iostream>#include <string.h>using namespace std;int arr[10];void dig(int i) {while (i > 0) {arr[i%10]++;i /= 10;}}int main() {int t; // testcaseint n; // numbercin >> t;while (t--) {memset(arr, 0, sizeof(arr));cin >> n;for (int i = 1; i <= n; i++) {dig(i);}for (int i = 0; i < 10; i++) {if (i == 0) {cout << arr[i];}else {cout << " " << arr[i];}}cout << endl;}}


0 0
原创粉丝点击