Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Object Oriented ProgrammingRSS Feeds

Program to rotate the word "Computer" by 1 results in "rCompute"

Posted By: Easy Tutor     Category: C++ Programming     Views: 3292

You are required to rotate a word a certain amount. For example, to c. Rotating it two more times gives you "terCompu".

The first line contains the word (which will not have more than 15 letters). The second line contains an integer n, which will be less than the length of the word. You must rotate the word n times.

The output will be the rotated word.

Code for Program to rotate the word "Computer" by 1 results in "rCompute" in C++ Programming

 # include <iostream.h>
 # include <fstream.h>
 # include <string.h>
 # include <stdlib.h>
 # include <conio.h>

 int main( )
    {
       clrscr( );

       fstream File("CP-22.txt",ios::in|ios::nocreate);

       if(!File)
      {
         cout<<"\n Unable to open the input file."<<endl;
         cout<<"\n Press any key to exit.";

         getch( );
         exit(EXIT_FAILURE);
      }

       char Data[100]={NULL};

       do
      {
         strset(Data,NULL);

         File.getline(Data,80);

         if(strcmp(Data,NULL)==0)
        break;

         char String[20]={NULL};

         strcpy(String,Data);

         strset(Data,NULL);

         File.getline(Data,80);

         int n=atoi(Data);
         int length=strlen(String);

         for(int i=(length-n);i<length;i++)
        cout<<String[i];

         for(int j=0;j<(length-n);j++)
        cout<<String[j];

         cout<<endl;
      }
       while(1);

       File.close( );

       getch( );
       return 0;
    }
  
Share: 



Easy Tutor
Easy Tutor author of Program to rotate the word "Computer" by 1 results in "rCompute" is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!