CodeForces 25BPhone numbers(简单的字符串模拟题目)

本题的题意如下:就是把每一串电话号码给分割开,分割为两个一组或者三个一组,所以笨渣渣心里想了好久好久,找出了一个比较笨的方法,就是对其进行分类讨论,看其对3取余后的结果是几,这样总共有三种可能性。
AC代码如下:

这里写代码片#include
#include
#include
using namespace std;

int main()
{
    int n;
    string a;
    cin>>n;
    cin>>a;
    if(n%3==0)
    {
            cout<0]<1]<2];
        for(int i=3;i3)
        {
            cout<<'-'<1]<2];
        }
        printf("\n");
    }
    else if(n%3==1)
    {
        cout<0]<1]<<'-'<2]<3];
        for(int i=4;i3)
        {
            cout<<'-'<1]<2];
        }
        printf("\n");
    }
    else
    {
        cout<0]<1];
        for(int i=2;i3)
        {
            cout<<'-'<1]<2];
        }
    printf("\n");
    }
    return 0;
 } 

你可能感兴趣的:(简单题目,CodeForces)