Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Guest, before posting your code please take these rules into consideration:
    • It is required to use our BBCode feature to display your code. While within the editor click < / > or >_ and place your code within the BB Code prompt. This helps others with finding a solution by making it easier to read and easier to copy.
    • You can also use markdown to share your code. When using markdown your code will be automatically converted to BBCode. For help with markdown check out the markdown guide.
    • Don't share a wall of code. All we want is the problem area, the code related to your issue.


    To learn more about how to use our BBCode feature, please click here.

    Thank you, Code Forum.

C++ i am trying to code something to output onto a text file

i am trying to code something that will output 100 random numbers, one per line onto a .txt file but i just dont know what to do. i dont know how to put the numbers on different lines. i just dont know
 
Well, can you try the below code I am sure you can get what you are looking for.
Here is the C++ code.

Code:
#include <iostream>
#include <fstream>
#include <cstdlib> // for rand() and srand()
#include <ctime>   // for time()


int main() {
    // Initialize the random number generator with the current time
    srand(static_cast<unsigned int>(time(nullptr));


    // Open a file for writing
    std::ofstream outputFile("random_numbers.txt");


    if (!outputFile) {
        std::cerr << "Error opening file for writing." << std::endl;
        return 1;
    }


    // Generate and save 100 random numbers, one per line
    for (int i = 0; i < 100; ++i) {
        int randomNum = rand();
        outputFile << randomNum << std::endl; // Write to file with newline
    }


    // Close the file
    outputFile.close();


    std::cout << "Random numbers have been saved to random_numbers.txt." << std::endl;


    return 0;
}

Thanks
 

New Threads

Latest posts

Buy us a coffee!

Back
Top Bottom