dom tag

52 questions


2 answers
64 views
0
Android Domparser question.

I'm going to use dom parserI just called you like the picture, but there's an error.I don't know what's wrong and what I'm going to do ㅠ

1 years ago

1 answers
58 views
0
Why does "hello world" keep coming out when I write random?

Why is hello world always printed on the source code below? System.out.println(randomString(-229985452) + + randomString(-147909649)); public static String randomString(int i) { Random ran = new Ra...

1 years ago

1 answers
89 views
0
simple html dom

I want to parse in php, but can't you find the elements in simple htmldom with id value?

1 years ago

1 answers
75 views
0
How to draw any number from 0 to 9

[0,9] I want to randomly pick a number in the range. What should I do?

1 years ago

1 answers
61 views
0
I'd like to ask you a question about the code for creating a java lottery number

import java.util.*;//lotto numberpublic class Pre4 {public static void main(String[] args){ Random rann = new Random(); int[] a = new int[45]; int[] b = new int[7]; for(int q=0;q<a.length;q++){ a[...

1 years ago

1 answers
47 views
0
DOM navigation error? getElementsByTagName error

If you open the developer tool to get the video tag from Naver blogs or cafes and run document.getElementsByTagName('video') or document.querySelectorAll('video') you will find a strange empty array. ...

2 years ago

1 answers
73 views
0
discord.js random image question

// Send hikari's imageclient.on('message', message => { if (message.content.startsWith (hikari)) { const hikari = [ 'https://example/giphy.gif', 'https://example/giphy2.gif', 'https://example/g...

2 years ago

3 answers
72 views
0
c++ generation of random numbers

#include <cstdlib>#include <ctime>#include <iostream>using namespace std;int main() { srand(time(0)); int num = rand()%101; for(int i = 0; i <=9; i++){ cout << num << ...

2 years ago

1 answers
73 views
0
Python List

Save 'grave', 'banana', 'gravefruit' and 'melon' as elements in the list named Fruit, mix them with random module functions, and then how do I write the first element to display the message 'correct' ...

2 years ago

1 answers
54 views
0
the beetle problem

#include <stdio.h>#include <time.h>#define ROWS 20#define COLS 20int main(void){ srand((unsigned)time(NULL)); char dot[ROWS][COLS]; for (int i = 0; i < ROWS; i++) { for (int j = 0; j &...

2 years ago
« - 5 - »

© 2024 OneMinuteCode. All rights reserved.