// C++ program that reads numbers from a file and calculates their sum
using namespace std;
#include <iostream>
#include <fstream>
int main() {
// Open the input file
ifstream inputFile("numbers.txt");
if (!inputFile) {
cout << "Failed to open the file." << endl;
return 1;
}
double sum = 0;
double number;
// Read numbers from the file and calculate the sum
while (inputFile >> number) {
sum += number;
}
// Close the file
inputFile.close();
// Print the sum
cout << "Sum of numbers in the file: " << sum << endl;
return 0;
}
Computer Methods in Science Course
Subscribe to:
Post Comments (Atom)
Basic Comparison of C++ and HTML/JavaScript
Here’s a basic comparison of C++ and HTML/JavaScript for common programming concepts and simple code examples for each. This will help ...
-
<button onclick="drawX()">Draw X</button> <!-- Button to call the 'drawX' function when clicked --> <...
-
#include <iostream> #include <fstream> using namespace std; // Function to sort an array of integers using Selection Sort void ...
-
In mathematics, Pascal's triangle is a triangular array of the binomial coefficients Coasters (Set of 4) $13.91 #MOVING #EYE #ILLUSION #...
No comments:
Post a Comment