Sponsored Content
Full Discussion: C++ little question
Top Forums Programming C++ little question Post 302502839 by faizlo on Wednesday 9th of March 2011 03:26:21 AM
Old 03-09-2011
C++ little question

Hi,

I am doing a C++ self-study and I got stuck with this problem.
I want to have a code that asks the suer to enter two numbers and then it lists the numbers between these two numbers. It has also to print a message if these two numbers are equal.
Here is what I wrote:
Code:
#include <iostream>

int main()
{
  int i, j;
  std::cout << "Enter two numbers:" << std::endl;
  std::cin >> i >> j;
  std::cout << "You etered: " << i << " and " << j << "!" << std::endl;
  
  if (i=j)
    std::cout << "They are equal" << std::endl;
  else {
    if (i<j) {
      std::cout << i << std::endl;
      ++i;
    }
    else if (i>j) {
      std::cout << j << std::endl;
      j++;
    }
  }  
  return 0;  
  
}

I have also tried many alterations using while and for statements. My question is: Why it does stuck at the first if statement, and then quits?

Thanks,

faizlo
 

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::IRandStream(3bobcat)				      Random numbers istream					 FBB::IRandStream(3bobcat)

NAME
FBB::IRandStream - Istream producing random numbers SYNOPSIS
#include <bobcat/irandstream> Linking option: -lbobcat DESCRIPTION
FBB::IRandStream objects may be used to extract random numbers in a given range from a stream. NAMESPACE
FBB All constructors, members, operators and manipulators, mentioned in this man-page, are defined in the namespace FBB. INHERITS FROM
std::istream, FBB::RandBuffer (private) CONSTRUCTORS
o IRandStream(int max): This FBB::IRandStream() constructor initializes the random generator. The default seed (i.e., 1) for the srand(3) function is used, meaning that every new run of the program will generate the same sequence of random values. Another constructor (see below) is pro- vided when this is not considered appropriate. Random values between 1 and max (inclusive) are returned. o IRandStream(int min, int max): This FBB::IRandStream() constructor initializes the random generator. The default seed (i.e., 1) for the srand(3) function is used, meaning that every new run of the program will generate the same sequence of random values. Another constructor (see below) is pro- vided when this is not considered appropriate. Random values between min and max (inclusive) are returned. o IRandStream(int min, int max, int seed): This FBB::IRandStream() constructor initializes the random generator. The seed is used to initialze the random number generator. To start the random generator at some unpredictable point, time(0) could be used. Random values between min and max (inclusive) are returned. INHERITED MEMBERS
Since the class uses public derivation from std::istream, all members of this class can be used. EXAMPLE
#include <iostream> #include <bobcat/irandstream> using namespace std; using namespace FBB; int main(int argc, char **argv) { IRandStream in(1000); for (; argc--; ) { size_t random; in >> random; cout << random << endl; } return 0; } FILES
bobcat/irandstream - defines the class interface SEE ALSO
bobcat(7), randbuffer(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::IRandStream(3bobcat)
All times are GMT -4. The time now is 07:25 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy