C++ 1021 个位数统计(15 分)

C++ 1021 个位数统计(15 分)_第1张图片

方法1 (自写,很机械)

#include
#include
using namespace std;

int main()
{
  string str;
  cin>>str;
  int c0,c1,c2,c3,c4,c5,c6,c7,c8,c9;
  c0=c1=c2=c3=c4=c5=c6=c7=c8=c9=0;
  int n=str.length();
  for(int i=0;i0) cout<<"0:"<0) cout<<"1:"<0) cout<<"2:"<0) cout<<"3:"<0) cout<<"4:"<0) cout<<"5:"<0) cout<<"6:"<0) cout<<"7:"<0) cout<<"8:"<0) cout<<"9:"<

方法2(自写,改进)

#include
#include
using namespace std;

int main()
{
  string str;
  cin>>str;
  int cnt[10]={0};
  int n=str.length();
  for(int i=0;i0) 
     // cout<

 

你可能感兴趣的:(编程题)