Jump to content
xisto Community

rize619

Members
  • Content Count

    66
  • Joined

  • Last visited

Posts posted by rize619


  1. i really dont get you osknockout what you are talking about i need help with this LOOP and i cannot understand ya single word.... i want to program it in C++ ...a programmer known well what is pascal triangle ...


  2. hey what is the logic behind pascal triangle please explain all it to meand also explain the following program code to me as well(using loops)1.*********S PACE**S PACE**S PACE*********(as spaces dont work here so i write space to fill the space)2.AABABCABCDABCDE


  3. hey dude what a bad compiler it is ?it does not even debugit did't show error like TCwhat a hell ?and where are the tutorials there in none ?i am talking about DEV C++ 4.9.9.2is there are any configration for this program to be able to run properly or what i canot figure out the problem why not it tell us where the error is or what is the error ...


  4. Yeah Opera Mini is a cool Version of Opera for Symbian OS.. Its full screen feutures and very unique way of moving with link are extra good ,,, Just load a site and if u cant see it properly like in nokia 6600 u can view it in full screen feuture ....... I really dont know if there is any other version of opera for symbian OS..I only uses Opera Mini under my nokia 6630 .. and 6600..Now u can also use Opera Mini on Nintendo Devices :) CooL


  5. yes adriantc i am 100% quite with your wordings.... This question depends upon the society in wich we are living every question about women change with respect to envoirnment and society ,See the example of afganistan where the women literacy rate is almost zero but it does't mean that they are sniffing the women rights and voilate the human right but i think as i say that it changes with envoirnment and society ...


  6. This topic name does't clear that i wich case women and men are not equal or equal...I think women and men are equal in some cases and in some cases they are not and these cases are clear and no one can say wrong to themfirstly it is clear men are more powerfull then women okayif some women think that it is wrong then okay if some thiefs enters in your house then leave your all family mens there in the house and go fight with the thiefs hehesecondly , women and men are euqual with respect to right, they both have same rights.altast i believe that women should be respected and should be entertained in all aspects of life.


  7. thannk you surely i understand all the program..
    but i can't understand answer to question no 3 ... i am asking here in this code .... when we return -1 then what will the program do it do what with -1 , -1 means what ??

    if (! myFile)								{									cout << "Error opening output file" << endl;									return -1;								}
    Return -1 will telll what ?
    and also please tell me ofstream , fstream etc statement and examples programs..

  8. A Report on a NewsPaper

    (IDG) -- The first virus capable of damaging computer hardware is in the wild, but reports vary on whether it's a serious risk to most PC users.

    The CIH virus was first discovered last month in Taiwan. Besides infecting Windows 95, 98, and NT portable executable files, CIH contains a routine that, when triggered, will overwrite the code in the infected PCs system BIOS, the software that's contained in a chip on the PC's motherboard and is loaded on boot-up to control the keyboard, disk drives, and other system functions.

    "It flashes [the BIOS] with a bunch of garbage and basically renders your machine useless because if you [try to] boot up without a BIOS, your machine doesn't boot," explains Wheat. "You actually have to take the chip out and either have it reprogrammed or purchase a new BIOS chip. But you can't do a thing with your computer other than pop your door open until you replace your BIOS chip."


  9. Harry Potter and the Deathly Hallows is the seventh and final book in the Harry Potter series of novels by J. K. Rowling. The book is scheduled to be released globally in English-speaking countries shortly after midnight 00:01

    The book is expected to be 608 pages in the British edition

    Back Cover:

    Harry is waiting in Privet Drive. The Order of the Phoenix is coming to escort him safely away without Voldemort and his supporters knowing – if they can. But what will Harry do then? How can he fulfil the momentous and seemingly impossible task that Professor Dumbledore has left him with?

    Inside Flap:

    “ Harry has been burdened with a dark, dangerous and seemingly impossible task: that of locating and destroying Voldemort’s remaining Horcruxes. Never has Harry felt so alone, or faced a future so full of shadows. But Harry must somehow find within himself the strength to complete the task he has been given. He must leave the warmth, safety, and companionship of The Burrow and follow without fear or hesitation the inexorable path laid out for him.

     

    In this final, seventh installment of the Harry Potter series, J.K. Rowling unveils in spectacular fashion the answers to the many questions that have been so eagerly awaited. The spellbinding, richly woven narrative, which plunges, twists and turns at a breathtaking pace, confirms the author as a mistress of storytelling, whose books will be read, reread and read again.

    Notice from jlhaslip:
    Added quote tags.

    Material is not original.

     

    Posted Image


  10. first of all sory for my poor as i am not english.. any how here is a code

    #include <fstream>#include <string>#include <iostream>#include <stdlib.h>using namespace std;int main()	{		int start; 		string str1 = "___________________________________________\n|||ADDRESS BOOK|||\n___________________________________________\n\n\n\n\n";		string str2;		string str3;		string str4;		string str5;		string str6;		string str7;		string str8;	intro:		cout << "Hello! if this is your first time using Address Book, please enter 1.\n Otherwise press 2." << endl;		cin >> start;		{ 			if(start==1)				{					ofstream myFile("addressbook.txt");						{							if (! myFile)								{									cout << "Error opening output file" << endl;									return -1;								}							}							myFile << str1 << endl;							myFile.close();							system("cls");							cout << "A file under the name 'addressbook.txt' has been created." << endl;								system("pause");								system("cls");						}						else if(start==2)							{								system("cls");								system("pause");								goto menu;							}							else if(start>2||start<1)								{									system("cls");								cout << " NUMBER MUST BE LESS THAN 2 and above 1\a\a\a\a\a" << endl;								system("pause");								system("cls");								goto intro;								}							}						menu:								system("cls");								cout << " 1) Add Entry to address book" << endl;								cout << " 2) View address book(unoperational)" << endl;								cin >> start;									{										if (start==1)											{												cout << "Enter First Name\n" << endl;												cin >> str2;												cout << "Enter Last Name\n" << endl;												cin >> str3;												cout << "Enter Street Number\n" << endl;												cin >> str4;												cout << "Enter Street Name(no spaces in between name and suffix, e.g. CollinsDrive)\n" << endl;												cin >> str5;												cout << "Enter town\n" << endl;												cin >> str6;												cout << "Enter e-mail address\n" << endl;												cin >> str7;												cout << "Enter Phone Number(no spaces)\n" << endl;												cin >> str8;												ofstream myFile("addressbook.txt", ios::app);												myFile << "\t" << str2 << " " << str3 << " " << str4 << " " << str5 << " " << " " << str6 << " " << str7 << " " << str8 << endl;												myFile.close();											}											else if(start==2)												{													system("cls");													ofstream myFile("addressbook.txt", ios::in|ios::in|ios.trunc);												}											}											return 0;								}

    I want to ask some thing please explain them one by one..
    1.why we use string here instead of char or int
    2.Re write the program for me by using switch statement for different fuction performing
    3.what is this intro:
    4. return -1 will do what ?
    5. explain ofstream fuction orignal syntax as well

    Thanks a lot if u let explain these thing for me.... but please dont forget to rewrite the source code using switch keyword....

  11. i know that it is a cheating and there are tonz of source codes avaiable in source codes websites and i am not asking you people to give me the source code and i have my works within 10 minutes the problem is that honestly i am very baad in programming my group leader is already making the assignment as this is the group assignment and now i have told him abt my bad programming practice....plese atleat you peoples give me the step of wich i can understand how this program is going to actually be made...... because i have no concept of it at all..i am only good upto do - while loopplease help me out atleast tell me the steps..


  12. sorry dear i am wrong ......... i think that man jst want to start programming ..did get wrong that he want to learn the c language...if u want to learn c then there are some link i m giving to you wich may help you for understand c language...
    http://www.mycplus.com/
    http://www.cprogramming.com/
    http://www.codeproject.com/
    http://www.planet-source-code.com/Default.asp
    there
    are forum as well in mycplus so u can ask there some basic question as well ...wish u best of lunk and thanks bhavesh for my correction


  13. the same problem occur with me a year ago ... for some days my DVD writer did't recongnize one brand of dvd at all but when i put some more good quality dvd-r then it start recongnizing it .... i think the same problem is with you ... your DVD Writer go old or your dvd quality is bad ...if u think both are okay then one time clean your DVD Writer with cd cleaner it will help you !!Hope u understand what i said to u..

×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.