19771 questions
using namespace std;class Student_info{private:char s_name[10];int s_age = 0;char s_university[100];char s_major[100];public:Student_info();Student_info(char* name, int age, char* univ, char* major);b...
In the GUI application using tkinter, when you click on the app, you communicate with the outside world and update the screen based on that information.I found that the amount of memory gradually incr...
Hello, I was working on an example using the pythonos module.I have a question.#Set file pathfile_der1 = 'C:/Users/maker01/Downloads/a'file_der2 = 'C:/Users/maker01/Downloads/b'file_der3 = 'C:/Users/m...
I am cross-building the Linux kernel in the Docker container because I want to run BusyBox with the kernel I built myself in qemu as shown in the link below, but there is no kernel image in arch/arm64...
Hello, everyone.I was making something with janggo and got stuck, but I don't understand why the error message came out, so I'm asking if anyone knows.I Googled and tried it, but I really didn't get i...
classBaseClass{ // member variable // member function};class FirstClass:public BaseClass {};classSecondClass:publicBaseClass{};classThirdClass:publicBaseClass{};void func(){ autoptr=std::make_shared&l...
I want yarn to work in dockefile web container.And docker compose run --rm webbin/setup to run yarn install.This is the current error.The Gemfile's dependencies are satifiedYarn executable was not det...
I would like to create a program that uses x,y,n as a positive integer to find the smallest number of n solutions that satisfy 1/x+1/y=1/n and x<=y, but even if I write the following program in pai...
I have a question about how to solve the LeetCode problem below.https://leetcode.com/problems/partition-list/description/As a solution to the above problem, we refer to the following:https://leetcode....
https://atcoder.jp/contests/abc083/tasks/abc083_bThe output result will be 0 in the code below, but I do not know which part to correct, so I would appreciate it if you could let me know.entering20 2 ...
« | - 22 - | » |
© 2024 OneMinuteCode. All rights reserved.