“CPP Rand” Kode Jawaban

CPP Rand

#include <iostream>
#include <cstdlib>  //required for rand(), srand()
#include <ctime>    //required for time()
using namespace std;

int main() {
    srand(time(0));     //randomizing results... (using time as an input)
    
    const int totalNumbersGenerated = 30;
    const int minRange = 1, maxRange = 20;

    cout<<"\nPrinting "<<totalNumbersGenerated<<" random integer numbers (from "<<minRange<<" to "<<maxRange<<"):\n";
    
    for(int i=1;i<=totalNumbersGenerated;i++){
        //generating random number in specified range (inclusive)
        cout<<1+((rand () % maxRange) + minRange - 1)<<" ";
    }
    
    cout<<endl;
    return 0;
}
ALeonidou

CPP Rand

std::srand(std::time(nullptr)); 		// set rand seed
v1 = std::rand() % 100;         // v1 in the range 0 to 99
v2 = std::rand() % 100 + 1;     // v2 in the range 1 to 100
v3 = std::rand() % 30 + 1985;   // v3 in the range 1985-2014 
Clever Cowfish

c acak

#include <cstdlib>
#include <iostream>
#include <ctime>
 
int main() 
{
    std::srand(std::time(nullptr)); // use current time as seed for random generator
    int random_variable = std::rand();
    std::cout << "Random value on [0 " << RAND_MAX << "]: " 
              << random_variable << '\n';
}
Cautious Cormorant

rand () c

v1 = rand() % 100;         // v1 in the range 0 to 99  --Credit goes to Clever cowfish
v2 = rand() % 100 + 1;     // v2 in the range 1 to 100
v3 = rand() % 30 + 1985;   // v3 in the range 1985-2014
PYTHON_NOT_SNAKE.py

rand () c

version1 = std::rand() % 3; // it is in the range from 0 to 2 // 0 1 2
version2 = std::rand() % 5 + 2; // it is in the range from 2 to 6 // 2 3 4 5 6
version3 = std::rand() % 3 + 10; // it is in the range from 10 to 12
//first number is how much digits it will go second number is the digit it 
//starts on (including that digit)

//negative
version4 = std::rand() % 11 - 12; // it is in the range from -2 to -12
Snack Detective

C Rand

#include <cstdlib>

int main() {
  std::cout << "RAND_MAX value is " << RAND_MAX << std::endl;
}
Maou Shimazu

Jawaban yang mirip dengan “CPP Rand”

Pertanyaan yang mirip dengan “CPP Rand”

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya