1,990 Posted Topics
Re: So...what/where is the method you've tried? Without providing you the answer...here is a basic outline: [code=cplusplus] #include <iostream> #include <cctype> #include <iomanip> #include <cmath> #include <fstream> #include <string> using namespace std; int main(void) { int num;//number to get it's factorial cout << "Please enter a positive number: "; cin >> … | |
Re: Welcome aboard. If you have specific problems when trying to do a program...please post the source code here along with what you think may be wrong. Also post the errors you get, so we can take a look and help you. We are not in the business of doing your … | |
Re: Since you've got the algorithim...it shouldn't be that hard....please post what you've got so far! | |
Re: welcome....hope you'll enjoy it here and that you're enjoying sunny florida...where about there in FL are you from? | |
Re: welcome...hope you'll enjoy it here! Since you've got a specific question about C, we recommend that you post your question in the C Programing section of this forum. Happy Coding | |
Re: Welcome aboard. If you have specific problems when trying to do a program...please post the source code here along with what you think may be wrong. Also post the errors you get, so we can take a look and help you. We are not in the business of doing your … | |
Good day. I am constantly getting a pop-up on startup of my laptop telling me that Windows Security Center is turned off and to click on that pop-up to turn it on. It brings up a window with a button that says "Turn On." When I click it, a dialogue … | |
Re: please let us know the specs of the computer. also, what are some of the crazy things going on with the computer? | |
Good day. I've read several of the threads and I've tried several different programs to remove malwares off my machine. I've ran S&D (spybot), it removed three problems. However, I have the following: 1. Smitfraud - C 2. Smitfraud-C.MSVPS 3. Zlob. Downloader.vcd My computer is getting sluggish. Spybot detects the … | |
Re: Welcome aboard. A few things additionally. This is an outline: [code] <Your headers> using namespace std; int main () { 1. declare a few variables...int, float... 2. cout<<"enter two numbers to get the average"<<endl;//ask the user ro input two digits. 3. cin>>num1>>num2;//makes the user enter two numbers 4. You get … | |
Re: Please let us know what type of computer you have and also what anti-virus program you’ve used. Personally, if a PC is infected, I do recommend using more than one antiviris program to help you. My personal recommendation for cleanup softwares are : Adware SE, ACE, Avast, AVG, Mcafee, ParetoLogic … | |
Re: don't think he's reached functions yet. Your errors are syntax. Look at something like this: [code=cplusplus] #include <iostream> #include <cstdlib> #include <cmath> #include <ctime> #include <string> using namespace std; int main() { srand ( static_cast<unsigned int> ( time ( 0 ) ) ); int randNum = rand() % 100 + … | |
Re: Sorry to hear about your dilema. Try a few things: 1. Well...after you get the problem resolved...do a registry repair. Do a scan of viruses and other malwares. 2. Try to boot from CD. 3. Please describe the sequence of the beep, how loud...ect...how rapid is it.... 4. Is it … | |
| |
Re: welcome...hope you'll enjoy it here... however, i recommend that you take a look at FAQ and rules. If you have specific questions about either of these programing languages...please post them their respective forums. | |
| |
Re: You may need to use the windows CD that came with the computer to reinstall the corrrupt/missing file...please proved the spec details about you computer and how long after you had the computer did the problem arise? | |
Re: welcome aboard....please post what you've got so that w can guide you. Here is some pointers: 1. start with your headers, you'll need to figure out which ones you'll need: [code] #include<iostream> [/code] 2. You need: [code] using namespace std; int main() [/code] 3. you need to declare some variables: … | |
The End.