43 questions
Hi, everyone.Currently, I am a jobless student who is studying with Python, which was said to be easier.I've been solving BOJ since yesterday to improve my coding skills.The problem is that when a cod...
const int a = sensor1; const int b = sensor2;const int c = sensor3;const int d = sensor4; if (a == LOW || b == LOW || c == LOW || d == LOW )What does this code mean?
Why isn't the code below executed?There is no value assigned to the original i, so it says that it cannot be executed even after the new assignment.public class Main {public static void main(String[] ...
Hello, everyone I got a syntax error while coding Python, but I don't understand whyIn the first coding, there was an error in the sum_even(result) function. Is it because you use a,b without knowing ...
for(int p = 0; p < index.length;p++) { int count=0; for(int q = p+1; q < index.length; q++) { if (Arrays.equals(index[p], index[q])) { count = count +1; } } if (count==7) { For (in...
I'm a freshman who just started directx 9. I was going to make a game with my friend, but I don't know how to implement a game that is bright around the player and darkens when a certain distance is a...
Why is it like this? The console.h file and the Console.cpp file are included in the main sourceWill it work if I connect it?Do you call this function?
Fruit stores sell pears, grapefruit, melon, and persimmonsStock quantity and unit price in advance fruit = {'bae': [2, 1000], 'grapefruit': [1, 2000], 'Meron': [1, 8000], 'Gam': [6, 800]} stored in Ou...
School year = input() / print (You entered %s., %s)I'd like to ask if this code is correct!I don't know how to code when I try to print it out like this ㅜ
public int compareTo(Object o)CircleTwo c = (CircleTwo) o;Here, I don't know what the parameter Objecto in CompareTo points to.And do you mean to convert (CircleTwo) o in the second line?Code with the...
« | - 2 - | » |
© 2024 OneMinuteCode. All rights reserved.