newbie
-
- Posts: 276
- Joined: Fri Aug 15, 2008 8:21 am
what the answer?
What is the result of the following code?
x=0;
switch(x)
{
case 1: cout<<"One";
case 0: cout<<"Zero";
case 2: cout<<"Hello World";
}
A. One
B. Zero
C. Hello World
D. ZeroHello World
please explain tia.
x=0;
switch(x)
{
case 1: cout<<"One";
case 0: cout<<"Zero";
case 2: cout<<"Hello World";
}
A. One
B. Zero
C. Hello World
D. ZeroHello World
please explain tia.
Re: what the answer?
D.WINPINPH1 wrote:What is the result of the following code?
x=0;
switch(x)
{
case 1: cout<<"One";
case 0: cout<<"Zero";
case 2: cout<<"Hello World";
}
A. One
B. Zero
C. Hello World
D. ZeroHello World
please explain tia.
The switch statement takes an integer and then a series of case statements. It jumps to the case statement that matches the integer value and continues from there.
-
- Posts: 276
- Joined: Fri Aug 15, 2008 8:21 am
Oh, 'tis a sad day when WhiteKnight is distributing misinformation about such a skilled and leet hacker like schiz0id.WhiteKnight wrote:This site is completely unreliable and is intentionally to be a joke. The site is more of a maliciously threat from an outdated script kiddie. This is completely irrelevant to this topic.

/me shakes head...
-
- Posts: 276
- Joined: Fri Aug 15, 2008 8:21 am
I don't see any benefit of that site or what relevant may schiz0id spoken of. So if you have something in your mind, then please explain to me.canine wrote:Oh, 'tis a sad day when WhiteKnight is distributing misinformation about such a skilled and leet hacker like schiz0id.WhiteKnight wrote:This site is completely unreliable and is intentionally to be a joke. The site is more of a maliciously threat from an outdated script kiddie. This is completely irrelevant to this topic.
/me shakes head...
thank you sir for posting here your website i like it.
everything is direct to the point. i really love it.
but for know i want to know the basic (but still i will read your website)
let us go back to the topic now please(let us avoid fight here)
ok my problem now if for loop
i want to input an integer and loop it multiply by 5 but still cant make it
#include <iostream> \* for loop example*/
using namespace std;
int main()
{
int x;
cout<<"Please input number divisible by 5\n\n";
cin>>x;
cin.ignore();
for (x;x<20;x*5)
{
cout<<"output mulitplied by 5\n\n";
cout<<x<<endl;
}
cin.get();
}
what is the problem with my code? loop does not end.
The for loop should read:WINPINPH1 wrote: #include <iostream> \* for loop example*/
using namespace std;
int main()
{
int x;
cout<<"Please input number divisible by 5\n\n";
cin>>x;
cin.ignore();
for (x;x<20;x*5)
{
cout<<"output mulitplied by 5\n\n";
cout<<x<<endl;
}
cin.get();
}
what is the problem with my code? loop does not end.
for (x; x < 20; x *= 5)
There are other problems in your code, but I'm rather busy at the moment.