Posts
 
Reputation
Joined
Last Seen
Ranked #925
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
2
Posts with Upvotes
1
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
~6K People Reached
Favorite Forums
Member Avatar for tun712

I was wandering aimlessly on google, I found [ReactOS](https://www.reactos.org/). It's interesting. I tried this OS, many windows applications are running well on it. But some latest applications are unable to run like **Firefox 65.0.1** I have few questions, * How worth is using this OS? * What is future of …

Member Avatar for tun712
0
857
Member Avatar for chubbyy.putto

what I am trying to do is store same letter to same node. For example: let say I have person, people is sent to be put into a node. This will create two node. I want to some thing like P: Person People Person and People are same note When …

Member Avatar for bernardo.mclobo
0
412
Member Avatar for Nation

I have an elementary understanding of Atrificial Neural Networks but I havent worked on any project so far. I was asking you guys to recommend me some mini projects that can help me have a deeper understanding of Artificial Neural networks.

Member Avatar for bernardo.mclobo
0
187
Member Avatar for Saddam_2

Hello, can anyone help me in searching code for hand gesture recognition system using opencv in c++. Thanks

Member Avatar for bernardo.mclobo
0
90
Member Avatar for charmie
Member Avatar for mzee rajput

i want to make an artificial system in c++ language for a doctor or any judge that will take input from the user and by using rule of inference it will display the result as true or false, can anybody help me to solve this problem

Member Avatar for bernardo.mclobo
0
133
Member Avatar for Varad_1
Re: CPP

I am a kid of 15 and just started learning cpp. I want to make a simple programme wherby if i say hi to the computer it must respond by saying hello to me. So please give the coding or programme for it.

Member Avatar for David W
-2
161
Member Avatar for abcdz

redo (or do for the first time) programming project 2 from chapter 11. define your ADT class in separate files so that it can be compiled separately. I need help with that!!!

Member Avatar for bernardo.mclobo
0
100
Member Avatar for kumanutiw

Create a class Candy with the following data: weight of one candy bag, price of one candy bag. There are three types of candy in the store. Find the weight and price of heaviest candy bag. What is the price of 1 candy bag with minimum weight? ï‚· Extend the …

Member Avatar for bernardo.mclobo
0
143
Member Avatar for obinaysamanoden

Average #include <iostream> #include <cstdlib> using namespace std; bool check(double element[], int count); int main() char redo; do { system ("cls"); double elements = 0, i = 0, j = 0, average_elements = 0; int k[1]; bool correct; cout<< "This program will show the average element of a sequence.\n\n"; cout<< …

Member Avatar for bernardo.mclobo
0
170
Member Avatar for Dondrell

#include <iostream> using namespace std; // Constant for the number of months const int NUM_MONTHS = 12; // Declaration of the WeatherInfo structure struct WeatherInfo { double rain; // Total rainfall double high; // High temperature double low; // Low temperature double averageTemp; // Average temperature }; int main() { …

Member Avatar for ddanbe
-1
267
Member Avatar for Shamar_1

Write, compile, and execute a C++ program to calculate the sum of the numbers from 1 to 100. The formula for calculating this sum is sum = (n/2)(2*a + (n-1)d), where n = number of terms to be added, a = the first number, and d= the difference between each …

Member Avatar for ddanbe
-1
329
Member Avatar for Shamar_1

Write a C++ program that generates a 7 character randomized password from the set integers 1 – 9 and A-Z.

Member Avatar for ddanbe
-1
234
Member Avatar for obinaysamanoden
Member Avatar for bernardo.mclobo
0
79
Member Avatar for malikbasit
Member Avatar for bernardo.mclobo
-2
85
Member Avatar for Miguel_4

1. Total Purchase A customer in a store is purchasing five items. The prices of the five items are: Price of item 1 = $ 12.95 Price of item 2 = $ 24.95 Price of item 3 = $ 6.95 Price of item 4 = $ 14.95 Price of item …

Member Avatar for bernardo.mclobo
-1
142
Member Avatar for LATCH808

so this is a checkout program. Hers my problem: the user enters 1 to enter checkout and then enters the PLU code followed by the weight of it or unit, then they have to choice to enter another PLU code or 0 to exit. Once the user enters 0 it …

Member Avatar for bernardo.mclobo
0
137
Member Avatar for LATCH808

can someone tell me whats wrong with it or what i should do? #include <iostream> #include <iostream> #include <string> #include <fstream> #include <vector> using namespace std; List storage[50]; int e = 50; int intro(void) { int userChoice; cout << "Enter 1 to checkout or 0 to end checkout."; cin >> …

Member Avatar for bernardo.mclobo
0
429
Member Avatar for faridoon.jan.7

write a program that asks user for five lowercase letters,one at a time and prints their uppercase equilents(using for loop).it uses ASCII table to ensure that user enter lowercase letter(these are the letters whose ASSCII numbers range from 97 to 122).if user do not type a lowercase letter,the program ignores …

Member Avatar for Builder_1
0
116
Member Avatar for afiya abdu

i need a program that saves the record of three students in one subject then saves the file. again calling this file to calculate the total of the projects,assignments, final exams and finally do grade for three of them. at the end the students record should be puttedin menu of …

Member Avatar for ddanbe
0
126
Member Avatar for bernardo.mclobo

Hi. I'm learning C++ by myself, so I'm a noob, also i'm a mad scientist :P I'm trying to use a doubly linked list with polymorphism, and got a problem. Here is my code: #include <iostream> #include<string> #include<cstdlib> #include<cstring> #include<sstream> using namespace std; // node class template<typename T> class nodeType …

Member Avatar for bernardo.mclobo
0
407
Member Avatar for bernardo.mclobo

Hi. I'm trying to implement a stack in C++, but i got stuck Here's my code #include<iostream> #include<cassert> #include<cstdlib> using namespace std; template<class Type> class stackTDA { public: virtual void initializeStack() = 0; virtual bool isEmptyStack() = 0; virtual bool isFullStack() = 0; virtual void push(const Type& newItem) = 0; …

Member Avatar for bernardo.mclobo
0
652
Member Avatar for bernardo.mclobo

Hi. I'm learning by myself data structures with c++ but i got stuck Here's my code: #include<iostream> #include<cstring> #include<string> #include<sstream> using namespace std; template<class T> // node class class nodeType { public: nodeType(); nodeType(T); ~nodeType(); nodeType *next; nodeType *previous; T data; //string getkey(); string Id; //void borra_todo(); void imprime(); // …

Member Avatar for tinstaafl
0
241