Hackerearth : Digit Problem

code:

#include<bits/stdc++.h>
using namespace std;
int main()
{

    char x[1000];
    int k;
    scanf("%s %d",x,&k);
    for(int i=0; i<k; i++)
    {
        if(x[i]!='9')
        {
            x[i]='9';

        }
        else if(x[i]=='9')
        {
            //continue; //continue will give partially accepted as after getting 9 it will not increase
            k++; //k needs to be updated
        }
    }
    cout<<x<<endl;

    return 0;
}

 

It would be a great help, if you support by sharing :)
Author: zakilive

Leave a Reply

Your email address will not be published. Required fields are marked *