Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Homework HelpRSS Feeds

Program to read n integers and add them up and output the result

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

Write a program that read n integers and add them up and output the result.

First line of the file will contain the number of test cases. Subsequent lines will contain one test case on each line.

Each test case will start with an integer ‘n’ the number of elements to be added. It will be followed by ‘n’ integers in that line.

For each test case you are required to output the result of the addition of the ‘n’ numbers.

Code for Program to read n integers and add them up and output the result in C++ Programming

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

 int main( )
    {
       clrscr( );

       fstream File;

       File.open("CP-04.txt",ios::in|ios::nocreate);

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

         getch( );
         exit(EXIT_FAILURE);
      }

       char Input[100]={NULL};

       File.getline(Input,80);

       int counter=atoi(Input);

       for(int count_1=0;count_1<counter;count_1++)
      {
         strset(Input,NULL);

         File.getline(Input,80);

         char *Ptr=NULL;

         Ptr=strtok(Input," ");

         int n=atoi(Ptr);

         Ptr=NULL;
         Ptr=strtok(NULL," ");

         long sum=atoi(Ptr);

         for(int count_2=1;count_2<n;count_2++)
        {
           Ptr=NULL;
           Ptr=strtok(NULL," ");

           sum+=atoi(Ptr);
        }

         cout<<sum<<endl;
      }

       File.close( );

       getch( );
       return 0;
    }
  
Share: 



Easy Tutor
Easy Tutor author of Program to read n integers and add them up and output the result 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

Related Articles and Code:


 
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!