Web development and programming
191828 questions • Page 138 / 3837
//Error message: \"[Error] expected declaration specifiers or \'...\' before \'t
//Error message: "[Error] expected declaration specifiers or '...' before 'time'" //My exact code is pasted below. I cant figure out why srand isnt working. Ignore what ive commen…
//Example program #include #include #include using
//Example program #include <iostream> #include <string> #include <iomanip> using namespace std; const float WOLF_PRICE = 55.00; const float RABBIT_PRICE = 15.00;…
//February 26,2016 import java.util.Scanner; class Project_2 { public static voi
//February 26,2016 import java.util.Scanner; class Project_2 { public static void main(String[] args) { Scanner sc = new Scanner(System.in); System.out.println("Enter first name")…
//File NFLGameDay5.java import java.util.Scanner.*; public class NFLGameDay5 { p
//File NFLGameDay5.java import java.util.Scanner.*; public class NFLGameDay5 { public static void main (String [] args){ //Construct Team Falcons NFLTeam5 falcons = new NFLTeam5("…
//File Name: Centimeter conversion program //Author: // //Narrative: This progra
//File Name: Centimeter conversion program //Author: // //Narrative: This program is designed to prompt a user to inputa length //in centimeters (cm) and then convert it to inches…
//File: 1170_10_5.cc //Purpose: This program displays the appropriate color depe
//File: 1170_10_5.cc //Purpose: This program displays the appropriate color depending on the value // of a variable colorval as below: // if colorval is print this color // 1 red …
//File: Palindrome.java // This program determines whether an input line is a pa
//File: Palindrome.java // This program determines whether an input line is a palindrome. The program // ignores everything except alphabetic letters, and it ignores the differenc…
//Folder/Project Name: Ch3PayrollApplication //Programmer Name: example //Date:
//Folder/Project Name: Ch3PayrollApplication //Programmer Name: example //Date: 03/24/2012 //Class Name: PayrollApplication /*Project Description: This payroll project uses a GUI …
//Folder/Project Name: Project 2 //Programmer Name: Example //Date: 3.5.2012 //C
//Folder/Project Name: Project 2 //Programmer Name: Example //Date: 3.5.2012 //Class Name: ScannerApplication /* Project Description: This is the skeleton for an application */ im…
//Folder/Project Name: ifGUI //Programmer Name: Example //Date: 9/29/2008 //Clas
//Folder/Project Name: ifGUI //Programmer Name: Example //Date: 9/29/2008 //Class Name: IfGUIApplication /*Project Description: This class demonstrates compound if statements */ i…
//For this lab, you are to make a function that takes in an integer as an argume
//For this lab, you are to make a function that takes in an integer as an argument, and prints out that number, that number of times. //For example if you were to call the functio…
//GameOfLife.h file #pragma once #include // Provides ostream #include // String
//GameOfLife.h file #pragma once #include // Provides ostream #include // String operations #include // Randomizer namespace csci2312{ using std::string; using std::ostream;…
//Global variables var prevCalc = 0; var calc = \"\"; //The following function d
//Global variables var prevCalc = 0; var calc = ""; //The following function displays a number in the textfield when a number is clicked. //Note that it keeps concatenating number…
//HELP! Error Message JAVA Program ÏStudentFinder.java:88: error: cannot find sy
//HELP! Error Message JAVA Program ÏStudentFinder.java:88: error: cannot find symbol ÏÏ§Ï Student s = new Student( tokens[0], String.parseString(tokens[1].trim()), Double.parseDou…
//HashT.h #ifndef H_Htable #define H_Htable //**********************************
//HashT.h #ifndef H_Htable #define H_Htable //**************************************************************** // Author: D.S. Malik // // This class specifies the members to impl…
//Header Files #include #include #include #include using namespace std; //Functi
//Header Files #include #include #include #include using namespace std; //Function Headings int DayofWeek(int DayofWeek, int intRes1 = 0, int intRes2 = 0, int intRes3 = 0, int JDN…
//Header Files #include #include using namespace std; void
//Header Files #include <fstream> #include <iostream> using namespace std; void main() { //The Start of the main function //variable declaration. use 8 because its the…
//Header Files #include #include #include #include
//Header Files #include <iomanip> #include <string> #include <fstream> #include <iostream> using namespace std; int main() { //The Start of the main functi…
//Header Files #include #include #include #include
//Header Files #include <string> #include <cmath> #include <iostream> #include <iomanip> using namespace std; //Function Headings int DayofWeek(int DayofWe…
//Header Files #include#include #include using namespace std; I am only needing
//Header Files #include#include #include using namespace std; I am only needing this program to calculate for 24, 36, 48, & 60 months. I am still getting a calculation for 12 …
//Header file section #include #include using namespace std; //class declartion
//Header file section #include #include using namespace std; //class declartion class TicTacToe { //Variable declartion private: enum Status { WIN, DRAW, CONTINUE }; int board[ 3 …
//Header file section #include using namespace std; //Implement a simp
//Header file section #include<iostream> using namespace std; //Implement a simple array based Stack class template. template<class T> class Stack { public: //Constr…
//Header files #include using namespace std; //function main program e
//Header files #include<iostream> using namespace std; //function main program execution int main() { //declare the variables int hours, minutes, seconds, elapsedTim…
//Heap Sort in C++ #include #include #include #incl
//Heap Sort in C++ #include <iostream> #include <cstdlib> #include <ctime> #include <time.h> using namespace std; const int SIZE = 500000; int x [SIZE]; vo…
//HelloDate.java import java.util.*; public class HelloDate { public static void
//HelloDate.java import java.util.*; public class HelloDate { public static void main(String[] args) { System.out.println("Hello, it's:"); System.out.println(new Date()); } } Foll…
//Help with Java OOP// So for my assignment we are making a sort of pet tracker
//Help with Java OOP// So for my assignment we are making a sort of pet tracker and it's the first assignment dealing with this stuff. I kind of understand the concept but not ent…
//Here\'s what I have but my output is all sorts of messed up :( #include
//Here's what I have but my output is all sorts of messed up :( #include <iostream> using namespace std; int GetUserChoice() { int menuChoice; cout << "Please enter yo…
//Hi, I\'m having some difficulty with this program in C++ . Perhaps I am doing
//Hi, I'm having some difficulty with this program in C++. Perhaps I am doing it all wrong. I think I have correctly used loops to stream in chars, to encrypt and decrypt but am h…
//How Can I make this so it ranks both the girl and boy names? I enter \"Jamie\"
//How Can I make this so it ranks both the girl and boy names? I enter "Jamie" and it only gives me the girl rank, but not the male rank. #include <iostream> #include <st…
//How can I complete the parts with this symbol /*** using C code. I need to cre
//How can I complete the parts with this symbol /*** using C code. I need to create a blob for a game and I have not gotten the right results. I need to use the arrow operator (-&…
//I NEED THE PROGRAM IN C LANGUAGE!// QUESTION: I need you to write a program wh
//I NEED THE PROGRAM IN C LANGUAGE!// QUESTION: I need you to write a program which manipulates text from an input file using the string library. Your program will accept command …
//I am having this error , can you guys help me to fix it,.. please,,,,,,,,,,,,.
//I am having this error , can you guys help me to fix it,.. please,,,,,,,,,,,,.........................// //Severity Code Description Project File Line Suppression State Error C2…
//I am suppose to display this below at the start of my program to show // the u
//I am suppose to display this below at the start of my program to show // the user what seats are available and *means seat available and # means // seat that taken Seats: 0 1 2 …
//I can\'t get it to run to know what it prints The following program is suppose
//I can't get it to run to know what it prints The following program is supposed to reverse the order of the elements in the simpsons array. It compiles and runs, but it doesn't w…
//I have finished writing the program but it does not execute properly. It promo
//I have finished writing the program but it does not execute properly. It promopts for number of decks to play with and whether I wish to watch the process of game or not, but it…
//I need help with implementing my Priority Queue, I can\'t pass any my the test
//I need help with implementing my Priority Queue, I can't pass any my the tests. import java.util.ArrayList; public class PQ<T> { private ArrayList<PQEntry<T>…
//I need to code the parts with the sign *** but I dont know how to approach it.
//I need to code the parts with the sign *** but I dont know how to approach it. typedef struct blob { float old_x, old_y; float posx, posy; float vx, vy; float rad; int color; bo…
//I need to code the parts with the sign *** in C but I dont know how to approac
//I need to code the parts with the sign *** in C but I dont know how to approach it. I did Blob.init() but I need ideas to go through the array typedef struct blob { float old_x,…
//I need working and clear solution Write a function that inserts the nodes of a
//I need working and clear solution Write a function that inserts the nodes of a binary tree into an ordered linked list. Also, write a program to test your function. Do not chang…
//I want to display expected output. however, I don\'t know what is wrong. thank
//I want to display expected output. however, I don't know what is wrong. thank you import java.util.Scanner; public class Exercise11_01 { public static void main(String[] args…
//I want to replace the Next Question button when it is out of questions. There
//I want to replace the Next Question button when it is out of questions. There are //7 questions in total in the ga array. I want to replace it with the Results button //to displ…
//INSTRUCTION //Look for ** to complete all of them //----- Globally setting up
//INSTRUCTION //Look for ** to complete all of them //----- Globally setting up the alias and struct ---------------- typedef ** el_t ; // elements will be ** //a list node is def…
//INSTRUCTION //Look for ** to complete all of them //----- Globally setting up
//INSTRUCTION //Look for ** to complete all of them //----- Globally setting up the alias and struct ---------------- typedef ** el_t ; // elements will be ** //a list node is def…
//INSTRUCTION //Look for ** to complete all of them //The output should match my
//INSTRUCTION //Look for ** to complete all of them //The output should match my assingment sheet //----- Globally setting up the alias and struct ---------------- typedef ** el_t…
//ITS-250, Week 5 Problem 4 //Task: Modify this code and replace the while loop
//ITS-250, Week 5 Problem 4 //Task: Modify this code and replace the while loop with a for loop #include<iostream> using namespace std; int main() { const int QUIT = 0; …
//ITS-250, Week 5 Problem 5 //Task A: Modify this code and replace the while loo
//ITS-250, Week 5 Problem 5 //Task A: Modify this code and replace the while loop with a for loop //Task B: Modify this code to allow the user the ability to enter the interest ra…
//I\'ve included the header file and a .cc file.The .cc is what I need help with
//I've included the header file and a .cc file.The .cc is what I need help with please. #ifndef DIE_H_ #define DIE_H_ #include <fstream> using namespace std; class Die { pri…
//Ifgqueue.h #ifndef LFGQUEUE_H #define LFGQUEUE_H #include \"player.h\" class L
//Ifgqueue.h #ifndef LFGQUEUE_H #define LFGQUEUE_H #include "player.h" class LFGQueue { public: LFGQueue(); void add_player(Player* p); bool remove_next_pa…
//Ifgqueue.h #ifndef LFGQUEUE_H #define LFGQUEUE_H #include \"player.h\" class L
//Ifgqueue.h #ifndef LFGQUEUE_H #define LFGQUEUE_H #include "player.h" class LFGQueue { public: LFGQueue(); void add_player(Player* p); bool remove_next_gr…
//Ifgqueue.h #ifndef LFGQUEUE_H #define LFGQUEUE_H #include \"player.h\" class L
//Ifgqueue.h #ifndef LFGQUEUE_H #define LFGQUEUE_H #include "player.h" class LFGQueue { public: LFGQueue(int scrimmage_threshold); void add_player(Player* p); …
Subject
Web development and programming
Use Browse or pick another subject.