Re: More Funny Stuff From Joel

Liste des GroupesRevenir à ol advocacy 
Sujet : Re: More Funny Stuff From Joel
De : nospam (at) *nospam* dfs.com (DFS)
Groupes : comp.os.linux.advocacy
Date : 13. Jun 2024, 16:59:51
Autres entêtes
Message-ID : <666b0963$0$985$882e4bbb@reader.netnews.com>
References : 1 2 3 4 5 6 7 8 9 10 11 12
User-Agent : Betterbird (Windows)
On 6/13/2024 2:05 AM, candycanearter07 wrote:
DFS <nospam@dfs.com> wrote at 13:15 this Wednesday (GMT):
On 6/12/2024 2:35 AM, candycanearter07 wrote:
DFS <nospam@dfs.com> wrote at 16:20 this Tuesday (GMT):
>
>
3) write your own C to calc the mean, median and mode of:
>
1,2,3,4,5,5,6,7,8,9
>
#include <stdio.h>
#define COUNT_CNT 10
>
int nums[] = {1, 2, 3, 4, 5, 5, 6, 7, 8, 9, -1};
>
int main()
{
double mean;
int median, mode, md_count[COUNT_CNT], len;
>
for( len = 0; nums[len] != -1; len++ )
{
mean += nums[len];
md_count[nums[len]]++;
}
mean /= len;
>
if(len % 2 == 0)
{
int mid = len / 2;
median = nums[mid] + nums[mid + 1]];
median /= 2;
}
else
median = nums[len / 2];

for( int i = 0; i < COUNT_CNT; i++ )
{
if(md_count[mode] < md_count[i]) mode = i;
}
>
printf("mean %g, median %d, mode %d", mean, median, mode);
}
>
These compiled fine on my machine (gcc 12.2.0)
>
>
Did you actually run the code?
>
Yes, but I also typed it into slrn by hand bc I was worried that pasting
it would mess up word wrapping
>
I got a segfault (WSL Ubuntu, gcc 11.4).  Had to make a few tweaks to
get it to run and provide correct answers.
>
Do you want me to tell you what I did, or do you want to figure it out?
>
Hint: after the line "mean /= len;" print out the contents of
md_count[].  You should get:
>
1. 1
2. 1
3. 1
4. 1
5. 2
6. 1
7. 1
8. 1
9. 1
>
I don't see it sorry ^^:
>
>
You don't see what?
  The mistake I made.
Did you print the contents of md_count[] ?  That should give you a clue.
The code you posted shouldn't have run.  What answers did it give you?

Date Sujet#  Auteur
8 Jun 24 * More Funny Stuff From The Joke Python131Diego Garcia
8 Jun 24 +* Re: More Funny Stuff From The Joke Python117Joel
8 Jun 24 i+* Re: More Funny Stuff From The Joke Python110rbowman
8 Jun 24 ii`* Re: More Funny Stuff From The Joke Python109rbowman
8 Jun 24 ii +* Languages (was: Re: More Funny Stuff From The Joke Python)7vallor
8 Jun 24 ii i+* Re: Languages2%
8 Jun 24 ii ii`- Re: Languages1vallor
9 Jun 24 ii i`* Re: Languages (was: Re: More Funny Stuff From The Joke Python)4Lawrence D'Oliveiro
24 Jun 24 ii i `* Re: Languages (was: Re: More Funny Stuff From The Joke Python)3Sebastian Wells
24 Jun 24 ii i  +- Re: Languages (was: Re: More Funny Stuff From Python)1Lawrence D'Oliveiro
24 Jun 24 ii i  `- Re: Languages (was: Re: More Funny Stuff From The Joke Python)1rbowman
9 Jun 24 ii +* Re: More Funny Stuff From Joel95DFS
9 Jun 24 ii i+- Re: More Funny Stuff From Joel1Lawrence D'Oliveiro
9 Jun 24 ii i+* Re: More Funny Stuff From Joel2rbowman
9 Jun 24 ii ii`- Re: More Funny Stuff From Joel1Chris Ahlstrom
9 Jun 24 ii i+* Re: More Funny Stuff From Joel34Tyrone
9 Jun 24 ii ii+* Re: More Funny Stuff From Joel6Joel
9 Jun 24 ii iii`* Re: More Funny Stuff From Joel5rbowman
9 Jun 24 ii iii `* Re: More Funny Stuff From Joel4Joel
9 Jun 24 ii iii  `* Re: More Funny Stuff From Joel3rbowman
9 Jun 24 ii iii   `* Re: More Funny Stuff From Joel2Joel
9 Jun 24 ii iii    `- Re: More Funny Stuff From Joel1rbowman
11 Jun 24 ii ii+* Re: More Funny Stuff From Joel14candycanearter07
11 Jun 24 ii iii+* Re: More Funny Stuff From Joel2Chris Ahlstrom
12 Jun 24 ii iiii`- Re: More Funny Stuff From Joel1candycanearter07
14 Jun 24 ii iii`* Re: More Funny Stuff From Joel11Stéphane CARPENTIER
14 Jun 24 ii iii `* Re: More Funny Stuff From Joel10Farley Flud
14 Jun 24 ii iii  +* Re: More Funny Stuff From Joel8Stéphane CARPENTIER
14 Jun 24 ii iii  i`* Re: More Funny Stuff From Joel7Farley Flud
15 Jun 24 ii iii  i +- Re: More Funny Stuff From Joel1DFS
15 Jun 24 ii iii  i `* Re: More Funny Stuff From Joel5Stéphane CARPENTIER
15 Jun 24 ii iii  i  +* Re: More Funny Stuff From Joel2Farley Flud
15 Jun 24 ii iii  i  i`- Re: More Funny Stuff From Joel1Stéphane CARPENTIER
15 Jun 24 ii iii  i  `* Re: More Funny Stuff From Joel2Farley Flud
15 Jun 24 ii iii  i   `- Re: More Funny Stuff From Joel1Stéphane CARPENTIER
14 Jun 24 ii iii  `- Re: More Funny Stuff From Joel1DFS
14 Jun 24 ii ii`* Re: More Funny Stuff From Joel13Stéphane CARPENTIER
14 Jun 24 ii ii `* Re: More Funny Stuff From Joel12Joel
14 Jun 24 ii ii  +* Re: More Funny Stuff From Joel6Stéphane CARPENTIER
15 Jun 24 ii ii  i`* Re: More Funny Stuff From Joel5candycanearter07
15 Jun 24 ii ii  i +* Re: More Funny Stuff From Joel2Joel
16 Jun 24 ii ii  i i`- Re: More Funny Stuff From Joel1candycanearter07
16 Jun 24 ii ii  i `* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
16 Jun 24 ii ii  i  `- Re: More Funny Stuff From Joel1candycanearter07
16 Jun 24 ii ii  `* Re: More Funny Stuff From Joel5Lawrence D'Oliveiro
16 Jun 24 ii ii   `* Re: More Funny Stuff From Joel4Joel
16 Jun 24 ii ii    +* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
16 Jun 24 ii ii    i`- Re: More Funny Stuff From Joel1Joel
19 Jun 24 ii ii    `- Re: More Funny Stuff From Joel1Joel
9 Jun 24 ii i+* Re: More Funny Stuff From Joel20DFS
9 Jun 24 ii ii`* Re: More Funny Stuff From Joel19Joel
9 Jun 24 ii ii `* Re: More Funny Stuff From Joel18rbowman
9 Jun 24 ii ii  `* Re: More Funny Stuff From Joel17Joel
9 Jun 24 ii ii   +- Re: More Funny Stuff From Joel1%
9 Jun 24 ii ii   +* Re: More Funny Stuff From Joel5DFS
9 Jun 24 ii ii   i`* "Standard GUI" (was: Re: More Funny Stuff From Joel)4vallor
10 Jun 24 ii ii   i +- Re: "Standard GUI"1rbowman
10 Jun 24 ii ii   i `* Re: "Standard GUI"2Lawrence D'Oliveiro
10 Jun 24 ii ii   i  `- Re: "Standard GUI"1Chris Ahlstrom
9 Jun 24 ii ii   +- Re: More Funny Stuff From Joel1rbowman
11 Jun 24 ii ii   `* Re: More Funny Stuff From Joel9candycanearter07
11 Jun 24 ii ii    +* Re: More Funny Stuff From Joel2DFS
11 Jun 24 ii ii    i`- Re: More Funny Stuff From Joel1Lawrence D'Oliveiro
11 Jun 24 ii ii    `* Re: More Funny Stuff From Joel6Joel
12 Jun 24 ii ii     +* Re: More Funny Stuff From Joel4Lawrence D'Oliveiro
12 Jun 24 ii ii     i+* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
12 Jun 24 ii ii     ii`- Re: More Funny Stuff From Joel1Chris Ahlstrom
12 Jun 24 ii ii     i`- Re: More Funny Stuff From Joel1candycanearter07
12 Jun 24 ii ii     `- Re: More Funny Stuff From Joel1candycanearter07
11 Jun 24 ii i`* Re: More Funny Stuff From Joel37candycanearter07
11 Jun 24 ii i +- Re: More Funny Stuff From Joel1Lawrence D'Oliveiro
11 Jun 24 ii i +* Re: More Funny Stuff From Joel10rbowman
11 Jun 24 ii i i`* Re: More Funny Stuff From Joel9candycanearter07
11 Jun 24 ii i i `* Re: More Funny Stuff From Joel8rbowman
11 Jun 24 ii i i  +* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
11 Jun 24 ii i i  i`- Re: More Funny Stuff From Joel1candycanearter07
11 Jun 24 ii i i  `* Re: More Funny Stuff From Joel5Chris Ahlstrom
11 Jun 24 ii i i   `* Re: More Funny Stuff From Joel4rbowman
11 Jun 24 ii i i    +- Re: More Funny Stuff From Joel1Chris Ahlstrom
12 Jun 24 ii i i    `* Re: More Funny Stuff From C2Lawrence D'Oliveiro
12 Jun 24 ii i i     `- Re: More Funny Stuff From C1candycanearter07
11 Jun 24 ii i +* Re: More Funny Stuff From Joel2rbowman
12 Jun 24 ii i i`- Re: More Funny Stuff From Python1Lawrence D'Oliveiro
12 Jun 24 ii i `* Re: More Funny Stuff From Joel23candycanearter07
12 Jun 24 ii i  +* Re: More Funny Stuff From Joel2Lawrence D'Oliveiro
13 Jun 24 ii i  i`- Re: More Funny Stuff From Joel1candycanearter07
13 Jun 24 ii i  `* Re: More Funny Stuff From Joel20candycanearter07
13 Jun 24 ii i   `* Re: More Funny Stuff From Joel19DFS
13 Jun 24 ii i    `* Re: More Funny Stuff From Joel18rbowman
14 Jun 24 ii i     +* Re: More Funny Stuff From Joel16rbowman
14 Jun 24 ii i     i`* Re: More Funny Stuff From Joel15rbowman
15 Jun 24 ii i     i +* Re: More Funny Stuff From Joel13rbowman
17 Jun 24 ii i     i i`* Re: More Funny Stuff From Joel12rbowman
18 Jun 24 ii i     i i `* Re: More Fun Stuff From Lunar Lander11Lawrence D'Oliveiro
18 Jun 24 ii i     i i  `* Re: More Fun Stuff From Lunar Lander10rbowman
18 Jun 24 ii i     i i   +* Re: More Fun Stuff From Lunar Lander2Farley Flud
18 Jun 24 ii i     i i   i`- Re: More Fun Stuff From Lunar Lander1Joel
24 Jun 24 ii i     i i   `* Re: More Fun Stuff From Lunar Lander7Lawrence D'Oliveiro
24 Jun 24 ii i     i i    `* Re: More Fun Stuff From Lunar Lander6rbowman
24 Jun 24 ii i     i i     `* Re: More Fun Stuff From Lunar Lander5Lawrence D'Oliveiro
24 Jun 24 ii i     i i      `* Re: More Fun Stuff From Lunar Lander4rbowman
16 Jun 24 ii i     i `- Re: More Funny Stuff From Python1Lawrence D'Oliveiro
14 Jun 24 ii i     `- Re: More Funny Stuff From Joel1candycanearter07
9 Jun 24 ii +- Re: More Funny Stuff From The Joke Python1rbowman
9 Jun 24 ii +- Re: More Funny Stuff From The Joke Python1Lawrence D'Oliveiro
14 Jun 24 ii `* Re: More Funny Stuff From The Joke Python4Stéphane CARPENTIER
8 Jun 24 i`* Re: More Funny Stuff From The Joke Python6DFS
8 Jun 24 +* Re: More Funny Stuff From The Joke Python6vallor
8 Jun 24 +* Re: More Funny Stuff From Feeb's Life3DFS
8 Jun 24 +* Re: More Funny Stuff From The Joke Python2rbowman
9 Jun 24 +- Re: More Funny Stuff From The Joke Python1Lawrence D'Oliveiro
14 Jun 24 `- Re: More Funny Stuff From The Joke Python1Stéphane CARPENTIER

Haut de la page

Les messages affichés proviennent d'usenet.

NewsPortal