Web development and programming
191828 questions • Page 3645 / 3837
im trying to approximate PI the range is from [0, 0] to [1, 1] I think I set the
im trying to approximate PI the range is from [0, 0] to [1, 1] I think I set the range wrong, can someone help fix the problem? import java.util.Scanner; public class PI { public …
im trying to count the number of comparisons in a shellsort method, but im strug
im trying to count the number of comparisons in a shellsort method, but im struggling to create a counter and get the counter to print. here is the code i am working with. public …
im trying to create an array that sorts the input numbers in increasing order. t
im trying to create an array that sorts the input numbers in increasing order. the problem i am having is shifting the array to make room for the new number. if anyone has any ide…
im trying to figure out part of this assignment i was given in c++. the teacher
im trying to figure out part of this assignment i was given in c++. the teacher only gave me the header file with a few instructions. im stuck on the two different kinds of constr…
im trying to get the program to send the results gotten from a .txt file to a se
im trying to get the program to send the results gotten from a .txt file to a separate output file. but for some reason when i added the very last "try" statement to my code, the …
im trying to load a precreated dictionary and i can\'t seem to load it correctly
im trying to load a precreated dictionary and i can't seem to load it correctly, can anyone help? public class SpellChecker { private DictionaryInterface myDictionary; private Dic…
im trying to make a function to determine the nth number in the fibonacci sequen
im trying to make a function to determine the nth number in the fibonacci sequence. heres what i have: function fib(n) F=zeros(1,n+1); F(1)=0; F(2)=1; if n+1 < …
im trying to make this code to work as a bacground subtraction for motion detect
im trying to make this code to work as a bacground subtraction for motion detection in matlab but it only reads the first frame and make it grayscale and put up a difference betwe…
im trying to run a program on unix (Metaphlan2.py), however I keep getting an er
im trying to run a program on unix (Metaphlan2.py), however I keep getting an error reading "Error: argument --input_type is required" any help?? also here is the script: (my PS1 …
im trying to search for a number 77 in a 3 by 3 matrix, im getting errors in the
im trying to search for a number 77 in a 3 by 3 matrix, im getting errors in the for loop, can anyone figure it out, i will rate#include <iostream>using namespace std;int ma…
im trying to write this function it works almost but if i enter a number in the
im trying to write this function it works almost but if i enter a number in the sorted array its suppose to tell me what number its between for example if i enter 28.5 it should s…
im trying to write this function it works almost but if i enter a number in the
im trying to write this function it works almost but if i enter a number in the sorted array its suppose to tell me what number its between for example if i enter 28.5 it should s…
im using ARMv8 and im very new to this .data type d, %object size d, 4 //d array
im using ARMv8 and im very new to this .data type d, %object size d, 4 //d array double 7.0, 0.0, 1.0, 1.0//64-bit double precision text global main arch armv8-a*fp*$ind type main…
im working on a C program that uses input to calculate area, paint needed and ca
im working on a C program that uses input to calculate area, paint needed and cans. this is my code #include <stdio.h> #include <math.h> // Note: Needed for math funct…
im working on a battleship java program, i believe my isSunk() method is faulty,
im working on a battleship java program, i believe my isSunk() method is faulty, every time i get a hit it atomatically says the sip is sunk,heres the code i have for that, public…
im working on a java program where im supposed to print the number of lines the
im working on a java program where im supposed to print the number of lines the number of words and the longest line in a text file! i just need help printing the longest line of …
im writing in c++ and using codeblocks and am getting this error 1\\test_rationa
im writing in c++ and using codeblocks and am getting this error 1 est_rational.cpp|111|error: cannot bind 'std::istream {aka std::basic_istream<char>}' lvalue to 'std::basi…
im writing this simple program and i am getting some errors. i dont know what th
im writing this simple program and i am getting some errors. i dont know what the problem is and hope someone can tell me public static void main(String[] args) { tax t= new…
imagine you are a network engineer who has been hired to design a network for a
imagine you are a network engineer who has been hired to design a network for a small company consisting of a headquarters office in Indianapolis, Indiana, and a branch office in …
imir.io/projects/c3827df7-3cf3-4311-80ae-a36faf63acef/project submissions Write
imir.io/projects/c3827df7-3cf3-4311-80ae-a36faf63acef/project submissions Write a program to fetch state of residence and marital status of 5 users. Use if.elif: to find out the n…
imleriea CN1 code, describe on the next page the structure of a program which wh
imleriea CN1 code, describe on the next page the structure of a program which which has the following components: mple Graphical User Interface (GUI) consisting of a form with a b…
implemement the game.cpp by the header file given. And create main.cpp to make t
implemement the game.cpp by the header file given. And create main.cpp to make the program work. The game is called the game of life, https://en.wikipedia.org/wiki/Conway's_Game_o…
implemement the game.cpp by the header file given. And create main.cpp to make t
implemement the game.cpp by the header file given. And create main.cpp to make the program work. The game is called the game of life, https://en.wikipedia.org/wiki/Conway's_Game_o…
implement MLFQ using C++ please using linked list do not ask for user input will
implement MLFQ using C++ please using linked list do not ask for user input will compute the overall wait times, response times, and turnaround times for each process and averages…
implement Shellsort Solution def shellSort(alist): sublistcount = len(alist)//2
implement Shellsort
implement a Perl script that produces a postfix notation for the expressions tha
implement a Perl script that produces a postfix notation for the expressions that appear below. Note the operands and operators are separated by one or more blanks: 0 1 + 2 …
implement a Point class with the following private data Point and operator overl
implement a Point class with the following private data Point and operator overloading Implement a Point class with the following private data: doublex double_y Implement the foll…
implement a Triangle class. It will contain methods that will: compute the area
implement a Triangle class. It will contain methods that will: compute the area of the triangle compute the perimeter of the triangle display the triangle’s characteristics Note: …
implement a basic text editor, texted.cpp, in C++ using system calls for low-lev
implement a basic text editor, texted.cpp, in C++ using system calls for low-level file I/O and the ncurses library for the Text User Interface (TUI) using NCURSES. • In addition …
implement a blackjack game. The code should include hit, stand, double, split, o
implement a blackjack game. The code should include hit, stand, double, split, or surrender. The game is 10 rounds The instructions are: Implement a blackjack cards game with bett…
implement a blackjack game. The code should include hit, stand, double, split, o
implement a blackjack game. The code should include hit, stand, double, split, or surrender. The game is 10 rounds The instructions are: Implement a blackjack cards game with bett…
implement a class called Matrix that will be used to represent a matrix of value
implement a class called Matrix that will be used to represent a matrix of values. This class will have the ability to add, subtract, and multiply two matrices. The Matrix class d…
implement a class called statistiscian. after it is initizalized itcan be given
implement a class called statistiscian. after it is initizalized itcan be given a sequence of double numbers. each number in thesequence is given to the statiscian by activating a…
implement a class called statistiscian. after it is initizalized itcan be given
implement a class called statistiscian. after it is initizalized itcan be given a sequence of double numbers. each number in thesequence is given to the statiscian by activating a…
implement a class of infix calculators. Consider simple infix expressionthat con
implement a class of infix calculators. Consider simple infix expressionthat consist of single digit operands; the operators +, -, *, and / ; and parentheses. Assume that unary op…
implement a command-line application demonstrating iteration and conditionals vi
implement a command-line application demonstrating iteration and conditionals via the "99 bottles of beer on the wall" song. The song goes like this: 99 bottles of beer on the wal…
implement a deconstructor for the following code: my current deconstructor is se
implement a deconstructor for the following code: my current deconstructor is seg faulting on me because im deleting stuff that i dont have.. Using c++! thanks! class Node { publi…
implement a hash table using array version of chaining. Complete code please. So
implement a hash table using array version of chaining. Complete code please.
implement a heap sort and demonstrate its functionality Solution PSEUDOCODE is a
implement a heap sort and demonstrate its functionality
implement a looking-for-group queue for a game where players can be one of three
implement a looking-for-group queue for a game where players can be one of three roles (Defender, Hunter, and Bard) and each group consists of one Defender, one Hunter, and one Ba…
implement a looking-for-group queue for a game where players can be one of three
implement a looking-for-group queue for a game where players can be one of three roles (Defender, Hunter, and Bard) and each group consists of one Defender, one Hunter, and one Ba…
implement a method to convert a maxheap of strings stored in an array into a min
implement a method to convert a maxheap of strings stored in an array into a minheap. Reminder: in amax heap the priority value at any node isthose at its children, while in a min…
implement a program to count the frequency of words in a text file. the text fil
implement a program to count the frequency of words in a text file. the text file is partitioned into N segments. Each segment is processed by a separate thread that outputs the i…
implement a simple calculator in C that can compute the sum of two integers a an
implement a simple calculator in C that can compute the sum of two integers a and b. Input: Two integers a and b (0?a,b?10000) here's what I have so far i know it's not doing what…
implement a working model of CHORD SYSTEM Additional Requirements: 1. You should
implement a working model of CHORD SYSTEM Additional Requirements: 1. You should start with a single Node. 2. You should allow the user to interact with the working model to selec…
implement and observe behavior of four sorts: Insertion Sort, Merge Sort, Heap S
implement and observe behavior of four sorts: Insertion Sort, Merge Sort, Heap Sort, and Quick Sort Write a Java code that implements the textbook algorithms. As part of your code…
implement and use the methods for a class called Die. Die class The Die class is
implement and use the methods for a class called Die. Die class The Die class is used to represent a 6-sided die. Data Members The class contains two data members. An integer that…
implement bubble sort... and so on using C or C++ Problem #5. (Programming) Sort
implement bubble sort... and so on using C or C++ Problem #5. (Programming) Sorting (30 pts) Implement Bubble Sort, Insertion Sort, Merge Sort, Heap Sort, and Quicksort for a list…
implement extract_min (removes least element) on an unbalanced binary search tre
implement extract_min (removes least element) on an unbalanced binary search tree in a persistent way. C++ or puescode is fine.
implement function abbreviation() that takes a day of the week as input and retu
implement function abbreviation() that takes a day of the week as input and returns its two-letter abbreviation. >>> abbreviation ('Tuesday') 'Tu' The computer game funct…
Subject
Web development and programming
Use Browse or pick another subject.