or tag

453 questions


1 answers
100 views
0
cEnter language multi-character scanf_s

You do not enter it as a string, but as a character.But char a; scanf_s(%c, &a); printf(%c, a);If I do this, there is no error. char a, b; scanf_s(%c%c, &a, &b); printf(%c%c, a, b);This ...

2 years ago

1 answers
159 views
0
SyntaxError: invalid syntax when called after function definition

I did this, but I keep getting errors def get_generation(x): return str ((x//10)*10) + 'large'age = int(input(x))print(get_generation(age) + I see)If I type 28, I want to get 20s like this..What shoul...


1 answers
100 views
0
This is an Android Studio Java code question.

Hello, I'm a beginner who just started studying development.I'm making a random drawing app for practice, and I'm practicing applying the code I studied in Java for the first time. But I'm confused be...


1 answers
132 views
0
Python list.range Syntax Question.

Use the list range to line up (ex. 150, 155, 160, 165....)If you enter the standard weight, it floats like the standard weightI keep on increasing my height by 5 and my weight also increases by 5I'm w...

2 years ago

1 answers
98 views
0
cLanguage Exception Occurred

#include <stdio.h>int main(){ int n1 = 0, n2 = 0; char c = 0; int val = 0; printf (Enter an expression: ); scanf_s(%d%c%d, &n1, &c, &n2); switch (c) { case '+': val = n1 + n2; pri...

2 years ago

2 answers
129 views
0
This is a question related to the production of the Android app.

Hello, brothers. Even if I make an app and release it, you can see itThe purple frame (?) that displays the name of the app file is continuously visible, so the completeness of the app is reduced due ...


1 answers
72 views
0
369 games

When the question is 369, Jjak comes out and 33 comes out twice, but if the output value is 23 now, it comes out once, so please let me know what the problem is and help me fix it.

c for
2 years ago

2 answers
104 views
0
PYTHON] How to start in the middle, not the first time, when operating a for door with a list or a panda?

Hello, I'm a beginner at PYTHON. So please understand that the level of questioning can be very low.foriiin list variable: print(ii)When you run with , the list variable always starts from the beginni...

2 years ago

1 answers
70 views
0
'module' object is not callable

The tensorboard_log is not a module, but it is said that the module cannot be loaded. Why?

2 years ago

1 answers
95 views
0
Questions about Python List

To solve this problem #4 for i in range(len(table[0])) : print(table[0][i]) sum=0 for j in range(1,len(table)) : for k in range(1,len(table[j])) : sum=sum+table[j][k] print(total score,sum,means,sum/(...

2 years ago
« - 35 - »

© 2024 OneMinuteCode. All rights reserved.