473,396 Members | 2,033 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

Noobie question about Switch

Hi all, this is a newbie question :-)

I was wondering if there was a way to use the switch statement in a manner
that each case statement includes more that a simple value. i.e.:
switch ( myFloat )
{

case >0: // ??? how do i write this ???

// execute if myfloat >0

break;

case 0:

// execute if myfloat ==0

break;

default:

// you got the idea
}

TIA
Aristotelis
Jul 22 '05 #1
6 1918
Hello,

"Aristotelis E. Charalampakis"
<ar***********************@REMOVEMEhotmail.com> wrote in message
news:bs***********@ulysses.noc.ntua.gr...
Hi all, this is a newbie question :-)

I was wondering if there was a way to use the switch statement in a manner
that each case statement includes more that a simple value. i.e.:
switch ( myFloat )
{

case >0: // ??? how do i write this ???

// execute if myfloat >0

break;

case 0:

// execute if myfloat ==0

break;

default:

// you got the idea
}

TIA
Aristotelis


You can use if/else if/else combos or some sort of control table of your
design:
float range[3*2] = { 0.1, 0.9, 1, // if greater than 0.1 and below 0.9 then
integer i = 1
1.1, 2.1, 2}; // if 1.1 and 2.1 then 2, etc..

--
Elias
Jul 22 '05 #2
So it is not possible to write something like
"case >0" ?

Can it be written in the form

switch ( TRUE )
case myFloat>0:
etc?

In VB I can write something like this:

select case myFloat
case 2 , 3
'Do something
case Is > 4
'do something else
case else
'default
end select

Or

select case True
case myFloat>4
'Do something
case myFloat<0
'do something else
case else
'default
end select

Is there a way to implement the above with the switch statement?

TIA,
Aristotelis

"lallous" <la*****@lgwm.org> wrote in message
news:bs************@ID-161723.news.uni-berlin.de...
Hello,

"Aristotelis E. Charalampakis"
<ar***********************@REMOVEMEhotmail.com> wrote in message
news:bs***********@ulysses.noc.ntua.gr...
Hi all, this is a newbie question :-)

I was wondering if there was a way to use the switch statement in a manner that each case statement includes more that a simple value. i.e.:
switch ( myFloat )
{

case >0: // ??? how do i write this ???

// execute if myfloat >0

break;

case 0:

// execute if myfloat ==0

break;

default:

// you got the idea
}

TIA
Aristotelis
You can use if/else if/else combos or some sort of control table of your
design:
float range[3*2] = { 0.1, 0.9, 1, // if greater than 0.1 and below 0.9

then integer i = 1
1.1, 2.1, 2}; // if 1.1 and 2.1 then 2, etc..
--
Elias

Jul 22 '05 #3

"Aristotelis E. Charalampakis" <ar***********************@REMOVEMEhotmail.com> wrote in message
In VB I can write something like this:
We're not in VB anymore.
select case myFloat
case 2 , 3

In C/C++:
case 2: case 3:

There's no way to do the relationals directly. You could do something like:

switch(i) {
case 2:
case 3:
...

default:
if(i > 10) { ...

You can't do switch with floats at all. The arg has to be an integer or
enum type.
Jul 22 '05 #4
Aristotelis E. Charalampakis wrote:
Hi all, this is a newbie question :-)

I was wondering if there was a way to use the switch statement in a
manner that each case statement includes more that a simple value.
i.e.:
switch ( myFloat )
You cannot use switch/case on floating point values, only integral
values.
{

case >0: // ??? how do i write this ???

// execute if myfloat >0

break;

case 0:

// execute if myfloat ==0

break;

default:

// you got the idea
}


There is no way to do that. Just use if:

if (myFloat == 0)

// execut if myFloat == 0

else if (myFloat > 0)

// esecute if myFloat > 0

else

// you got the idea

Btw: testing floating point values for equality is most often a bad idea
Jul 22 '05 #5
Thank you all. I will stick to the if / else combos.
Btw: testing floating point values for equality is most often a bad idea


Yes, it is a bad idea. I am not noobie in general, just in C++.

Yet, I have persuaded myself to write some dlls (mostly math stuff) in C++,
so that I get to know it. Some other dlls are in Visual Fortran 6.5, the gui
in VB.

Aristotelis.
Jul 22 '05 #6
"Aristotelis E. Charalampakis" <ar***********************@REMOVEMEhotmail.com> wrote in message news:<bs***********@ulysses.noc.ntua.gr>...
Hi all, this is a newbie question :-)

I was wondering if there was a way to use the switch statement in a manner
that each case statement includes more that a simple value. i.e.:


A way of doing it (just as tiring as if-else though) is:

switch (myFloat > 0) {
case true: blah blah; break; //myfloat > 0
case false: switch (myFloat == 0) {
case true: blah blah; break; //myfloat == 0
case false: blah blah; break; //myfloat < 0
}
break;
}
Jul 22 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

10
by: Myster Ious | last post by:
Polymorphism replaces switch statements, making the code more compact/readable/maintainable/OO whatever, fine! What I understand, that needs to be done at the programming level, is this: a...
15
by: YitzHandel | last post by:
The following is an extract from my program, which I seperated out and compiled as its own program. The problem is that as soon as a case tests true, all the cases below it execute as well. So...
18
by: Minti | last post by:
I was reading some text and I came across the following snippet switch('5') { int x = 123; case '5': printf("The value of x %d\n", x); break; }
10
by: Chih-Hsu Yen | last post by:
I encountered a strange problem about switch-case statement. switch(cmd) { case 1: statements; break; case 2: statements; break; ... .... case 11: S1; S2; S3; statements;
3
by: QQ | last post by:
Hi here is my short program void main() { while(1) { int command; scanf("%d", &command); switch(command) {
10
by: Evie | last post by:
I understand that when a switch statement is used without breaks, the code continues executing even after a matching case is found. Why, though, are subsequent cases not evaluated? I wrote a...
2
by: jalqadir | last post by:
In my program I have the following statements void Person::setTitle(const Glib::ustring& str) { switch ( str ) { case "None" : { title = title_t::None; break; } case "Dr" : { title =...
13
by: Satya | last post by:
Hi everyone, This is the first time iam posting excuse me if iam making any mistake. My question is iam using a switch case statement in which i have around 100 case statements to compare. so...
1
by: Josh Ibrahim | last post by:
Hello all :D, I am currently learning Java. I have a question about switch statements, in this program I am trying to use a switch statement instead of an If/else sequence to display a letter grades...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.