From Wikipedia, the free encyclopedia

I don't think 2 is...

I don't think 2 is a 'perfect square' as the bash code suggests it is. Could somebody maybe fix this? —Preceding unsigned comment added by 207.65.110.71 ( talk) 02:04, 5 June 2009 (UTC) reply

Fixed. Rich  Farmbrough, 23:59, 13 December 2009 (UTC). reply

Visual FoxPro

Is there a typo in the third case statement in the given example? —Preceding unsigned comment added by 206.174.71.149 ( talk) 06:24, 3 January 2010 (UTC) reply

Simplify the examples? A reader's suggestions (removed from article and placed here)

Suggestion from 86.186.234.3:

"Note: The following examples make it difficult to evaluate the methods of each language since the examples across languages are not alike. If somebody were to re-write the example so they all achieved the same thing, it would be very helpful. Using the 'switch' construct in a program which displays the verses to "The twelve days of Christmas" makes for a Very good example of how switch can be used."

--- I have no opinion about this, myself... Bill Wvbailey ( talk) 17:44, 3 January 2011 (UTC) reply

Wrong C program.

The program in C is technically correct in terms of conditional statements, but I'm sure it's not "puts," it's at least "print". —Preceding unsigned comment added by Clammybells ( talkcontribs) 01:07, 21 May 2011 (UTC) reply

Compilation section example

The compilation section mentions "The first 'C' example below", but most examples have been removed from the page for whatever reason, so this no longer makes sense. Perhaps the old C example should be added into this section? -- Rabbitkillrun ( talk) 19:08, 25 May 2013 (UTC) reply

"case x ... y" statement in C

In C you can also use "case" like this:

char c = 'X';

switch (c)
{
	case 'A' ... 'Z':
		printf("%c == upper letter\n", c);
		break;
	case 'a' ... 'z':
		printf("%c == lower letter\n", c);
		break;
	case '0' ... '9':
		printf("%c == digit\n", c);
		break;
	default:
		printf("%c == something else\n", c);
		break;
}

I haven't seen this before, it might be worth mentioning it. 2A02:908:1463:E7A0:2D1A:AD69:9EA8:B3BE ( talk) 20:32, 4 December 2020 (UTC) reply

From Wikipedia, the free encyclopedia

I don't think 2 is...

I don't think 2 is a 'perfect square' as the bash code suggests it is. Could somebody maybe fix this? —Preceding unsigned comment added by 207.65.110.71 ( talk) 02:04, 5 June 2009 (UTC) reply

Fixed. Rich  Farmbrough, 23:59, 13 December 2009 (UTC). reply

Visual FoxPro

Is there a typo in the third case statement in the given example? —Preceding unsigned comment added by 206.174.71.149 ( talk) 06:24, 3 January 2010 (UTC) reply

Simplify the examples? A reader's suggestions (removed from article and placed here)

Suggestion from 86.186.234.3:

"Note: The following examples make it difficult to evaluate the methods of each language since the examples across languages are not alike. If somebody were to re-write the example so they all achieved the same thing, it would be very helpful. Using the 'switch' construct in a program which displays the verses to "The twelve days of Christmas" makes for a Very good example of how switch can be used."

--- I have no opinion about this, myself... Bill Wvbailey ( talk) 17:44, 3 January 2011 (UTC) reply

Wrong C program.

The program in C is technically correct in terms of conditional statements, but I'm sure it's not "puts," it's at least "print". —Preceding unsigned comment added by Clammybells ( talkcontribs) 01:07, 21 May 2011 (UTC) reply

Compilation section example

The compilation section mentions "The first 'C' example below", but most examples have been removed from the page for whatever reason, so this no longer makes sense. Perhaps the old C example should be added into this section? -- Rabbitkillrun ( talk) 19:08, 25 May 2013 (UTC) reply

"case x ... y" statement in C

In C you can also use "case" like this:

char c = 'X';

switch (c)
{
	case 'A' ... 'Z':
		printf("%c == upper letter\n", c);
		break;
	case 'a' ... 'z':
		printf("%c == lower letter\n", c);
		break;
	case '0' ... '9':
		printf("%c == digit\n", c);
		break;
	default:
		printf("%c == something else\n", c);
		break;
}

I haven't seen this before, it might be worth mentioning it. 2A02:908:1463:E7A0:2D1A:AD69:9EA8:B3BE ( talk) 20:32, 4 December 2020 (UTC) reply


Videos

Youtube | Vimeo | Bing

Websites

Google | Yahoo | Bing

Encyclopedia

Google | Yahoo | Bing

Facebook