dom tag

52 questions


1 answers
100 views
0
Is sland(time(NULL)) sufficiently different in the multi-thread function?

In C language, when random values are generated, sland(time(NULL)) is often added.As far as I know, you make a random value by giving time as a seedGenerate 8 threads simultaneously in a 4-core 8-thre...

1 years ago

1 answers
112 views
0
I have a question about Java date function

public static void main(String[] args) { HashMap<String, String> map = new HashMap<String, String>(); try { File file = new File(C:\\Users\\kimsuhee\\workspace\\Capstone\\src\\capstonedat...

1 years ago

1 answers
87 views
0
Python - Excluded from the list of values selected by random.choice() among random modules

student = ['a', 'b', 'c', 'd', 'e', ' f', ' g' ] number = 0import randomwhile number < 32: number += 1 print(number, random.choice(student)) input()While creating a program that sets the order, the...

1 years ago

1 answers
110 views
0
Open a new window with a random link to JavaScript

Is it possible to transfer a new window to a random link in JavaScript? To open the window randomly Url = new Array(1. Site link2. Site link,3.Site Link);num = Math.floor(Math.random()*Url.length);sel...

1 years ago

1 answers
106 views
0
Generate n integers randomly for Python

X = []for x in range (n): X.appned(random.randint(-999,999))When I try to randomly generate n integers in Python, I try to use randint, but I made an error to randomly generate n integers, and I saw t...

1 years ago

1 answers
106 views
0
I'm a beginner at Python. Let me ask you how to use random functions

Hello. I'm currently studying Python introductory course.I want to leave a question about the random function.import randomcount = 2paper_list = [ ]paper_list.append(A)paper_list.append (me)paper_list...

1 years ago

1 answers
85 views
0
Randomize lists

For example, what should I do if I want to show off 100 random things out of a thousand lists...?

1 years ago

1 answers
52 views
0
Randomize numbers excluding 3,7 out of {1,2,3,4,5,6,7,8,9,0}

Hello, everyoneHow do I randomly pick a number out of a set of natural numbers?

1 years ago

1 answers
108 views
0
Why do only similar numbers appear in rand()?

I don't know if seed is weird or if I pull land() I keep getting similar numbers.In my program, I'm going to write a log, so there needs to be a big differenceAlmost all of them are from 225 to 230253...

1 years ago

1 answers
88 views
0
[Mission 3-3] You have a question while accessing/processing a document object using the DOM API

[Mission 3-3] You have a question while accessing/processing a document object using the DOM APII made a code in the local environment and checked the input_num_first variable value through the Chrome...

« - 3 - »

© 2024 OneMinuteCode. All rights reserved.