11 questions
if count == N: count = 0else: count = N + 1Is there any way to write this code in one line?In object-C, count = count == N ? 0 : count + 1;We could have shared it, but I don't know exactly what that i...
Enter a formula (*for example, 20*40): 21.1 + 30.021.100000 + 30.000000 = 51.100000a,b=input (Enter a formula (*for example, 20*40):)split()I know how to write an input function in this form, but I do...
per1=25per2 = .75if row[23] == 'sale1' or row[23] == 'sale2': if row[27].find(per1) == -1: cursor.execute(sql)else: cursor.execute(sql)Or per2 = .75if row[23] == 'sale1' or row[23] == 'sale2': if row...
It's a size output statement based on the number. I don't know why S is output when M should be output ㅠ
<script>function showMovie(age) { //Exit if checkAge return value is false if (!checkAge(age)) { return alert ('Error'); //The return value of checkAge is true } } else { alert('movie screen...
int main(void){ char* str[7] = { tiger, applemango, pear, anteater, strawberry, eagle, end }; char* st = malloc(sizeof(char)*4); while (*st != end) { printf (Search word (end) : ); scanf(%s, st); f...
This is a question that enters three integers and indicates whether each integer is even or odd. int a, b,c; scanf_s(%d%d%d, &a,&b,&c); if (a % 2 == 0) { printf(%s\n, even); } else if (a ...
age = int(Enter your age)if age >= 20: print('you are adult')elif age >=10 or age < 20: print('you are adolescent')elif age < 10: print('you are baby')I made the code like this, but even ...
How should the condition extraction be written in a program that takes two numbers and outputs both odd values between them? I'm trying to study alone, but I'm not sure, so I post a question.
a = float(Enter the required amount:)c = float(Enter the conversion factor: )))def ZEB(): n = print(a * c) if n < 80: print (Grade is A) elif 80 <= n < 140: print (Grade B) elif n >= 14...
- 1 - | » |
574 Who developed the "avformat-59.dll" that comes with FFmpeg?
915 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
578 Understanding How to Configure Google API Key
581 PHP ssh2_scp_send fails to send files as intended
611 GDB gets version error when attempting to debug with the Presense SDK (IDE)
© 2024 OneMinuteCode. All rights reserved.