All Questions

19771 questions


1 answers
439 views
0
If I studied JavaScript for a week and I can't even solve the string output problem, should I close it

I'm going to do a coding test like this..When given => ?Enter => ?Return => returnOutput => console.log()It came out like this, but I don't think I understood the problem method yet.Please...

1 years ago

1 answers
393 views
0
I'd like to run a programmer's answer on IntelJ

I solved it using solution function in programmers and I want to try running it in intelligentj, but the main is the basic function, so I'm wondering how we can apply each other and run the parameters...

1 years ago

1 answers
412 views
0
Coding Test Exercise - Control Jet Problem Question

A string containing a number and a Z separated by a space is given. You want to add numbers in a string in turn. If you get a Z at this point, it means subtracting the number that you just added. Give...

1 years ago

1 answers
353 views
0
The system ("cls") does not work.

...for(int i = 0; i <= 3 ; i++){ system(cls); turn(&A,&B,&C); printf(<PlayerStat>\n); printf(A : %d\nB : %d\nC : %d\n,A,B,C); sleep(3);}I did it like this I can't erase the cmd wi...

1 years ago

1 answers
430 views
0
I keep getting errors in my input in scanf_s, how do I fix it?

char name[256]; printf(What's your name? ); scanf_s(%s, name,sizeof(name)); runs properly, but displays c4477,c6328 errorSo, char name[256]; printf(What's your name? ); scanf_s(%s, name,(unsigned cha...

1 years ago

1 answers
367 views
0
a program that takes an integer and finds the sum of even and odd numbers

odd_sum = 0even_sum = 0while True : num_str = input (Enter an integer) if num_str == 99 : break num = int(num_str) if num % 2 == 0 : even_sum += num else : odd_sum += numprint(Odd number sum:,...

1 years ago

1 answers
382 views
0
guessNum = int(input("guess the number between", minNum, "and",maxNum))でのエラー

I couldn't solve it myself while studying, so I'd like to ask you a question.I enter the minimum and maximum values and write a code to guess the randomly selected number, but I get an error on the la...

1 years ago

1 answers
426 views
0
I want to connect the dots in the image horizontally

I want to connect the black dots in the image horizontally.Contours of cv2 detected the contour and used Euclidean distance to create four coordinates so that the interval between the acquired contour...

1 years ago

1 answers
448 views
0
Regarding the nuance of the name onXXX, which is often used in event handlers, etc

Speaking of event handlers, I have an image of onXXX, but I don't know what on meansI'm not sure.I'm worried about naming the method name of the function I'm currently creating, and I'm wondering if i...

1 years ago

1 answers
419 views
0
To enter a string from Python to Excel (xlwings) containing the 記号 symbol

I am thinking of using Python instead of Excel VBA.What should I do with the escape sequence (マーク mark) when I try to write a string stored in a variable on the python source that means a folder path ...

1 years ago
« - 2 - »

© 2024 OneMinuteCode. All rights reserved.