Sponsored Content
Full Discussion: C++ little question
Top Forums Programming C++ little question Post 302502857 by robfwauk on Wednesday 9th of March 2011 04:35:56 AM
Old 03-09-2011
change

Code:
if (i=j)
    std::cout << "They are equal" << std::endl;
  else {


to

Code:
if (i==j)
{
    std::cout << "They are equal" << std::endl;
}
  else {


------------------------

== is the comparison whereas = is used to set

Last edited by pludi; 03-09-2011 at 05:46 AM..
 

7 More Discussions You Might Find Interesting

1. Programming

Yet Another Question

Now that I have getch() to work, I have yet another problem. BTW, thank you for answering these questions, I do ask a lot, only because I am eager to know, what is a board used for anyways :) Ok, he's the problem... #include iostream.h #include conio.h int main() { char movement; ... (2 Replies)
Discussion started by: mbolthouse
2 Replies

2. Solaris

vi question

Im trying to edit a 113 meg file in VI and i get the error TMP FILE TOO LARGE. Does someone know how to get around this? Thanks! (1 Reply)
Discussion started by: BG_JrAdmin
1 Replies

3. UNIX for Dummies Questions & Answers

mv question

Hello if I like to move file from defined directories system to new directory that not contained any directories system structure . But I like to create the same file system structure as source directory for example : I have 2 directories: foo1 and foo2 foo1 have directories and foo2 have... (2 Replies)
Discussion started by: umen
2 Replies

4. UNIX for Dummies Questions & Answers

Question

hallo, ik heb hier een vraagje. hoeveel gebruikers kunnen er op 1 unix systeem. hopelijk antwoorden golle nu want ik moet da vinde voor school en die leerkracht zaagt. :p groetjes eu wacht wa was mijne nick ah ja vraagje groetjes vraagje ik kan geen engels dus antwoord liever in het... (1 Reply)
Discussion started by: vraagje
1 Replies

5. Shell Programming and Scripting

question about wc

Hey my friend was asking me if i knew a way to cout how many different words in a file. I told him no not off hand, but i was thinking about it, and i started to wonder also. I imagine this is probably pretty simple im just missing something, I keep confusing my self with how you would compair and... (16 Replies)
Discussion started by: yodadbl07
16 Replies

6. Hardware

question

How to add 3 moniters to a pc set up? (2 Replies)
Discussion started by: clicstic
2 Replies

7. AIX

df question

Hi, Can anyone please explain a little about df command. I have following question: Following example is showing % used as 4 where as total free blocks are 15.46 out of 16.00 MB blocks. df -m /test Filesystem MBblocks Free %Used Iused %Iused ... (5 Replies)
Discussion started by: itsabhi9
5 Replies
FBB::X2a(3bobcat)					      X-to-ASCII conversions						 FBB::X2a(3bobcat)

NAME
FBB::X2a - Objects performing x-to-Ascii conversions SYNOPSIS
#include <bobcat/x2a> Linking option: -lbobcat DESCRIPTION
FBB:X2a objects convert values of any (insertable) type to text. The returned text is automatically made available as a standard C++ string. NAMESPACE
FBB All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB. INHERITS FROM
std::ostringstream CONSTRUCTORS
o X2a(T const &value): In this constructor T may be any type that can be inserted into an o[string]stream. o X2a(double value, size_t behind): Double value is truncated to behind digits behind the decimal dot. If a value doesn't occupy behind digits behind the decimal point, then missing digits are added as 0. For example, a value of 7.1, will be displayed as 7.10 if two digits behind the decimal dot are requested. A value of 7 will be displayed as 7.00. o X2a(double value, size_t width, size_t behind, std::ios::fmtflags flags = std::ios::right): The value is displayed over width character positions, extending the amount if the value so requires. The converted value is placed right-aligned into the field of width characters. The copy constructor is available as well. STATIC MEMBER FUNCTION
o bool lastFail(): This member returns true if the last conversion failed (i.e., the object's fail() member returned true and returns false otherwise). This member allows checks on the success of the extraction/conversion using anonymous A2x objects. The member also returns true when no conversions have as yet been performed. Note that this member is a thread-unsafe static member: in a multithreaded program locks may be required to ensure that the proper conversion result is inspected. MEMBER FUNCTIONS
All members of std::ostringstream are available, as FBB::X2a inherits from this class. In particular ostringstream::str() can be used to obtain the contents of an X2a object's text buffer. OVERLOADED OPERATORS
o operator std::ostream &operator<<(std::ostream &ostr, X2a const &x2a): This conversion operator inserts the textual representation of the x2a parameter value into the provided ostream. o operator std::string const() const: this conversion operator returns the information stored inside the FBB::X2a object. The standard overloaded assignment operator is available as well. EXAMPLE
string is(X2a(5)); // initializes `is' with "5" string ds(X2a(5.25)); // initializes `ds' with "5.25" cout << X2a(7.0 / 3, 4) << endl; // display a value using 4 digits behind the // decimal dot. cout << X2a(7.0 / 3, 8, 4) << endl; // display a value over 8 positions, right // adjusted, 4 digits behind the decimal dot. cout << X2a(7.0 / 3, 8, 4, std::ios::left) << endl; // display a value over 8 positions, left // adjusted, 4 digits behind the decimal dot. FILES
bobcat/x2a - defines the class interface SEE ALSO
bobcat(7), a2x(3bobcat) BUGS
None Reported. DISTRIBUTION FILES
o bobcat_3.01.00-x.dsc: detached signature; o bobcat_3.01.00-x.tar.gz: source archive; o bobcat_3.01.00-x_i386.changes: change log; o libbobcat1_3.01.00-x_*.deb: debian package holding the libraries; o libbobcat1-dev_3.01.00-x_*.deb: debian package holding the libraries, headers and manual pages; o http://sourceforge.net/projects/bobcat: public archive location; BOBCAT
Bobcat is an acronym of `Brokken's Own Base Classes And Templates'. COPYRIGHT
This is free software, distributed under the terms of the GNU General Public License (GPL). AUTHOR
Frank B. Brokken (f.b.brokken@rug.nl). libbobcat1-dev_3.01.00-x.tar.gz 2005-2012 FBB::X2a(3bobcat)
All times are GMT -4. The time now is 06:12 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy