453 questions
The code is as follows:package com.example.[Username].hello;import android.support.v7.app.AppCompatActivity;import android.os.Bundle;public class MainActivity extends AppCompatActivity {@Overrideprote...
Write a program that receives two integers N and M and outputs numbers from 1 to N in the form of an M * M matrix. [Input Example 1]23[Output Example 1]121212121[Input Example 2]35[Output Example 2]12...
It is a code that consists of English words in the list, and then receives the word you want to find, outputs the index number from the list if there is the same thing, and outputs -1 if not.For examp...
Is this the only way to call a parent class constructor in a structure where C inherits B and B inherits A?class A(object): def __init__(self): print Creator Aclass B(A): def __init__(self): super(B...
Hello, I'm Python kid.I have a questionI'm making a phishing site inspection program.When entering A.com, run the program once, save the file under the A.com.txt file name,Continue working on B.com I...
Where is the logical operator xor?// Return 1 when either A or B is 5return (A==5) ^^ (B==5);I want to write it like this, but there is no ^^ operator, but there is only a bit operator ^.There are &am...
I have a C++ code with a lot of preprocessor instructions.I want to see how this was handled, where can I see it in the visual studio?
of Python, to list serise value from the string float I was about to change it to error .What's wrong?The code intention is change_csv['Volume'] serise is 1.61M, 77.2K, and it's kilo and millon I want...
int a[] = {1,2,3,4,5};Like this.
patterns = [Scissors, Rock, Paper]for i in range (len(patterns)): print(patterns[i])Here's a question for the masters. ㅠ
« | - 21 - | » |
© 2024 OneMinuteCode. All rights reserved.