All Questions

19771 questions


2 answers
45 views
0
I didn't know much about ascending programs.

Some of the ascending programs are listed below. void sort (inta[], intn){ inti,j,min,t; i = 0; while(i<n){ min = i; j = i+1; while(j<n){ if(a[j]<a[min]){ min = j; } j = j+1; } t = ...

c
2 years ago

1 answers
131 views
0
Unable to deploy php on xampp, xamp does not work

xampp does not work in Windows.I'd like to do a php deployment test on the Windows virtual host.Deploying xampp in WindowsLaunch apache (81 port), mysql (3306 port) Boot url should be http://locathost...

2 years ago

1 answers
96 views
0
changeposture-stand error in aibo visual programming

When I try to move it using Ivo Visual Programming, changeposture-stand:operation failedI can't use it because the display says from the bottom.Please let me know so that I can use it.


1 answers
85 views
0
Unable to run python on mac

I want to enter Python code in the text editor (CotEditor) of the mac and run it as terminal or IDLE, but I can't.What should I do?codeprint(hello world)

2 years ago

1 answers
43 views
0
I want to disable keystrokes in game over using JavaScript.

This is my first time posting.We develop simple games with JavaScript.The challenge now is to disable the key when the player hits the enemy so that it cannot be operated.Currently, even if the player...

2 years ago

1 answers
135 views
0
If you use different scaling on multiple monitors, the window will be misaligned on the next boot.

When using multi-monitor, if you scale differently, the size of the window will not be reproduced at the next boot.Reproduction method1. Set the monitor as 1 and 2 from left to right   1—Scaling 125% ...

2 years ago

1 answers
74 views
0
When I use filesystem::copy_file() in Mingw, I cannot overwrite it even if I specify overwrite_existing.

Examples include the following code:#include<filesystem>int main() { std::filesystem::copy_file(./t.txt, ./test/t.txt, std::filesystem::copy_options:overwrite_existing);}./t.txt and ./test are b...

2 years ago

1 answers
130 views
0
I want to check the sprite of unity.

[Unity] Create a 2D Shooting Game [Tutorial] I am creating a 2D shooting game by referring to the above site, but I am not sure if Player0~Player4 is in the game object called Player in Hierarchy.Plea...

2 years ago

1 answers
75 views
0
GAS "The item with the specified ID could not be found or you do not have permission to access" error.

I want to use GAS to retrieve the specified folder in my google drive, but every time I run a script, I get an error message saying, I couldn't find an item with the specified ID or I don't have permi...

2 years ago

1 answers
73 views
0
I would like to obtain Japan time from the Date class.

I set Japan time for the Date class as the code below.let dateFormatter=DateFormatter()dateFormatter.timeZone=TimeZone(identifier: Asia/Tokyo)dateFormatter.locale=Locale(identifier: ja_JP)dateFormatte...

2 years ago
« - 174 - »

© 2024 OneMinuteCode. All rights reserved.