453 questions
Hello, everyone It's been a while since I asked you a question.In the next picture, the expression in the for statement Can we turn it back to the For Moon one more time instead of like that? What can...
import requests,sys,time,os, argparsedef main(): os.system(clear)parser = argparse.ArgumentParser()parser.add_argument('-d', help='path to file of domain list', nargs=1, dest='domain', required=True)p...
Hello, I'm a high school student who is running the code due to school assignments. https://github.com/Bengemon825/TF_Object_Detection2020 I received an example from the link above and changed the dat...
I'm a beginner in C language.You want to store data in each string from a string through an array and output it.You want to enter each branch's revenue into an array and calculate the total and averag...
from tkinter import *import matplotlib.pyplot as pltwin = Tk()win.geometry(1024x576)win.title(Minecraft bukkit)win.option_add(*Font, NotoSansKR-Medium 20)ent = Entry(win)ent.insert (0Enter server to f...
import requestsimport reimport jsonreq = requests.get(page_urls[0]).json()html = req.contentsoup = BeautifulSoup(html, lxml)contents_table = soup.find(name=article)title = contents_table.find_all(h3 &...
int i, min = 0; for (i = 0; i < 10; i++) { cin >> number; if (i == 0) // Condition A min = number; else if (min > number) // Condition B min = number; } cout << min;Hello, the...
#include <iostream>using namespace std;int main(){ const int N=3; int i,j; for(i=0; i < N; i++){ for(j=i; j < N; j++){ cout << i << << j << endl; } }}When you go ...
#include <iostream>using namespace std;int minmax(int num) { int value, sum; int min, max; min = 9999; max = 0; for (int i = 0; i < num; i++) { cout << Enter your values please <&l...
« | - 37 - | » |
© 2024 OneMinuteCode. All rights reserved.