Web development and programming
191828 questions • Page 142 / 3837
//code above here has given temperature as istenger value #witch (temperature/10
//code above here has given temperature as istenger value #witch (temperature/10) { case 1: case 2: system.out.printin("pretty cold") break; case 9: System.out.print(Very): case 8…
//customer.h //#ifndef CUSTOMER_H //#define CUSTOMER_H #include #include using n
//customer.h //#ifndef CUSTOMER_H //#define CUSTOMER_H #include #include using namespace std; class Customer { private: string accountID; string name; public: Customer();…
//debug 2, chapter 11 //java programming, joyce farrell, 8th ed //output 1 // An
//debug 2, chapter 11 //java programming, joyce farrell, 8th ed //output 1 // An array for different boat types 2 public class DebugEleven2 3 { 4 public static void main(String[] …
//debug 3, chapter 11 //java programming, joycell farrell, 8th edi //fix and sho
//debug 3, chapter 11 //java programming, joycell farrell, 8th edi //fix and show what right code //output 1 // Two boats should be equal 2 // if they hold the same number of pass…
//declaring functions double cos_N (double x, int N) double cos_delta(double x,
//declaring functions double cos_N (double x, int N) double cos_delta(double x, double delta ) int factorial (int n ) double power ( double x, int n) # define PI 3.14 // NO < M…
//declaring functions double cos_N (double x, int N) double cos_delta(double x,
//declaring functions double cos_N (double x, int N) double cos_delta(double x, double delta ) int factorial (int n ) double power ( double x, int n) # define PI 3.14 // NO < M…
//declaring functions double cos_N (double x, int N) double cos_delta(double x,
//declaring functions double cos_N (double x, int N) double cos_delta(double x, double delta ) int factorial (int n ) double power ( double x, int n) # define PI 3.14 //NO MATH LI…
//dice.cpp #include #include #include #include using namespace std; int main() {
//dice.cpp #include #include #include #include using namespace std; int main() { const long ROLLS = 36000; const int SIZE = 13; // array exepected contains counts for the expected…
//done in C please Write a program that reads from the user some text in a strin
//done in C please Write a program that reads from the user some text in a string str that can hold a maximum of 40 characters and then it splits the string into two other strings…
//donors.txt Founding Circle Donors =================== David Brennan 5133 Oak S
//donors.txt Founding Circle Donors =================== David Brennan 5133 Oak Street Windermere, FL 34786 (407) 555-8981 home (407) 555-8189 cell dbrennan@example.net $50,000 Met…
//dumb 8 queens using a 2-dimensional array to represent the board #include
//dumb 8 queens using a 2-dimensional array to represent the board #include<cmath> #include<iostream> using namespace std; bool ok( what goes here ){ and here }; void …
//elearningquedugabbcsweb . e c e Error 401 xAn Introduction to Computer 4) The
//elearningquedugabbcsweb . e c e Error 401 xAn Introduction to Computer 4) The midpoint of the line joining two points A( B(x, y2) is172,112) and the distance between the two poi…
//evil_server.cpp #include #include #include #incl
//evil_server.cpp #include <string> #include <cstdlib> #include <iostream> #include "evil_server.h" using namespace std; EvilServer :: EvilServer() { hacked[0…
//example of what the graph looks like modify insert_edge() function so that it
//example of what the graph looks like modify insert_edge() function so that it can keep the link list sorted w.r.t. neighbor IDs. implement graph_copy() to create a copy of the g…
//file: LEDR.s //author: .include \"macros.inc\" SET_TARGET .text FUNCTION LEDR_
//file: LEDR.s //author: .include "macros.inc" SET_TARGET .text FUNCTION LEDR_Init,global //C prototype: void LEDR_Init(void) …
//function prototypes (Youshould put necessary function prototypes here.) int Fi
//function prototypes (Youshould put necessary function prototypes here.) int FindMin(const int anArray[], int size); const int size= 10; int main() { int array[size]; int smalles…
//header //driver #include using namespace std; #include \"header.h\"
//header //driver #include <iostream> using namespace std; #include "header.h" int main() { priorityQueue myqueue; //class object myqueue.empty(); cout <&l…
//header files #ifndef Contact_H // header files should always have this to avoi
//header files #ifndef Contact_H // header files should always have this to avoid #define Contact_H // multiple inclusion in other files #include <string> // this is the …
//header section #include #include #include using
//header section #include <iostream> #include <fstream> #include <iomanip> using namespace std; //student structure struct Student { long studentID; double hwAve…
//heres my code: been stuck on it for days now #include #include
//heres my code: been stuck on it for days now #include <iostream> #include <string> #include <cctype> #include <ctime> using namespace std; int getLottoPi…
//how do i fix this? im gettint these errors. bool sameSet(const int *aBeg, cons
//how do i fix this? im gettint these errors. bool sameSet(const int *aBeg, const int *aEnd, const int *bBeg, const int *bEnd) { // Add your code yere for (auto p = aBeg; p!= aEnd…
//how do i parallelize the linear search for chunk and mod for serial and parall
//how do i parallelize the linear search for chunk and mod for serial and parallel //i have it declared but dont know how to parallelize them c++ Parallel Programming #include <…
//how to implement boolean onDry on the compiler and ask the question that the h
//how to implement boolean onDry on the compiler and ask the question that the hair is dry, so no hair drier needed import java.util.Scanner; public class Hairdry { //fields priva…
//html: Body Mass Index-BMI
//html: <!DOCTYPE html> <html> <head> <title>Body Mass Index-BMI</title> <meta charset="UTF-8"> <link rel="stylesheet" href="style.css" type…
//implement other functions: rehashing and findprime public static void main() {
//implement other functions: rehashing and findprime public static void main() { MyHashTable hashtable = new MyHashTable(11); System.out.println(hashtable.hash(5)); for(int …
//import scanner class import java.util.Scanner; //import random class import ja
//import scanner class import java.util.Scanner; //import random class import java.util.Random; //import Array class import java.util.Arrays; //public class Yahtzee { //main metho…
//in Picture.java public Picture copyRegionToNew(int xSource, int ySource, int x
//in Picture.java public Picture copyRegionToNew(int xSource, int ySource, int xTarget, int yTarget ) { Picture newCanvas = new Picture(); Pixel sPixel, tPixel = null; for (int sX…
//java Create a NetBeans project named Coins After you have created your NetBean
//java Create a NetBeans project named Coins After you have created your NetBeans Project your application class should contain the following executable code: package coins; publi…
//java Create a class that contains the following two methods: // Return true if
//java Create a class that contains the following two methods: // Return true if the sum of any two sides is greater than the third side. Write a test program that reads three sid…
//java Public class grade { private char letterGrade; public Grade ( char letter
//java Public class grade { private char letterGrade; public Grade ( char letterGrade ) { letterGrade = LetterGrade; } publi…
//java Write a program that reads an unspecified number of scores and determines
//java Write a program that reads an unspecified number of scores and determines how many scores are above or equal to the average and how many scores are below the average. Enter…
//java Write the methods with the following headers // Return the reversal of an
//java Write the methods with the following headers // Return the reversal of an integer, i.e., reverse(456) returns 654 public static int reverse(int number) // Return true if nu…
//java programming, joyce farraell, 8th ed //error when running, need to fix //d
//java programming, joyce farraell, 8th ed //error when running, need to fix //debug 4, Chapter 11 //show the correction code and output 1 // Creates and displays an array of boat…
//lab8a #include #include #include #include #define in_file \"data.txt\" #define
//lab8a #include #include #include #include #define in_file "data.txt" #define out_file "result.txt" using namespace std; int customer=0, item, dept=0; float purchase=0, discount,…
//library.h //The library is implemented as a binary search tree #include \"book
//library.h //The library is implemented as a binary search tree #include "book.h" #ifndef _LIBRARY_ #define _LIBRARY_ class Library { public: Library(); ~Library(); int lengthIs(…
//library.h //The library is implemented as a binary search tree #include \"book
//library.h //The library is implemented as a binary search tree #include "book.h" #ifndef _LIBRARY_ #define _LIBRARY_ class Library { public: Library(); ~Library(); int lengthIs(…
//main.cpp #include #include \"ComplexNumber.h\" using namespace std; int main()
//main.cpp #include #include "ComplexNumber.h" using namespace std; int main() { ComplexNumber num1(23, 34);//Line 1 ComplexNumber num2;//Line 2 ComplexNumber num3;//Line 3 cout &…
//main.cpp #include #include #include using namespac
//main.cpp #include <iostream> #include <queue> #include <string> using namespace std; vector<int> checkSums(vector<int> v){ //write your code her…
//main.cpp #include #include using namespace std; // Priorit
//main.cpp #include <iostream> #include <vector> using namespace std; // Priority Queue vector<int> priorityqueue {-65536, 12, 7, 8, 4, 6, 5, 3 ,1}; // void enQu…
//main.cpp #include #include \"treeNode.h\" using namespace std; int
//main.cpp #include <iostream> #include "treeNode.h" using namespace std; int main() { TreeNode n1, n2, n3, n4; n1.left = &n2; n1.right = &n3; n2.left = &n4; cou…
//main.cpp #include using namespace std; // Definition for a binary t
//main.cpp #include <iostream> using namespace std; // Definition for a binary tree node. struct TreeNode { int val; TreeNode *left; TreeNode *right; }; TreeNode* findInBST(…
//main.cpp #include using namespace std; // Definition for a binary t
//main.cpp #include <iostream> using namespace std; // Definition for a binary tree node. struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) { left …
//main.cpp #include #include #include #include
//main.cpp #include <string> #include <iostream> #include <algorithm> #include <vector> using namespace std; unsigned long bernstein(string str, int M) { …
//main.cpp #include #include #include using names
//main.cpp #include <string> #include <iostream> #include<algorithm> using namespace std; unsigned long bernstein(string str, int M) { unsigned long b_hash = …
//main.cpp //header files #include #include int main() { // d
//main.cpp //header files #include <iostream> #include <cmath> int main() { // declare variables float price; float money_given; float ReturnChange; float PrintDenomin…
//main.cpp file #include #include #include #includ
//main.cpp file #include<iostream> #include <cstdlib> #include <fstream> #include "GameOfLife2.h" using namespace std; int main() { string name; int choice, iter…
//main.cpp file #include #include \"GameOfLife.h\" using namespace std
//main.cpp file #include<iostream> #include "GameOfLife.h" using namespace std; int main() { gameOfLife gol; gol.run(); std::cin.get(); return 0; } //GameOfLife.h f…
//main.cpp file #include #include #include #include \
//main.cpp file #include<iostream> #include<cstdlib> #include<string> #include "GameOfLife2_Tests.h" #include "ErrorContext.h" //#include "GameOfLife2_csci2312.h…
//mdpbatxt.xml
//mdpbatxt.xml <?xml version="1.0" encoding="UTF-8" standalone="no" ?> <!-- New Perspectives on XML Case Problem 2 MDPBA Competition Roster Author: Date: Filename: mdp…
//my java code so far: import java.util.*; public class HW1 { public static void
//my java code so far: import java.util.*; public class HW1 { public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.print("Enter a sequence o…
Subject
Web development and programming
Use Browse or pick another subject.