Codeforces 363A Soroban
模拟算盘
#include<bits/stdc++.h> using namespace std; int main() { char s[20]; scanf("%s",&s); int len=strlen(s); for(int i=len-1;i>=0;i--) { if(s[i]>='5'&&s[i]<='9') { printf("-O|"); for(int j=1;j<=s[i]-'5';j++) printf("O"); printf("-"); for(int j=1;j<='9'-s[i];j++) printf("O"); printf("\n"); } else { printf("O-|"); for(int j=1;j<=s[i]-'0';j++) printf("O"); printf("-"); for(int j=1;j<='4'-s[i];j++) printf("O"); printf("\n"); } } return 0; }
版权声明:本文博客原创文章,博客,未经同意,不得转载。