Programming C, C++, Java, PHP, Ruby, Turing, VB
Computer Science Canada 
Programming C, C++, Java, PHP, Ruby, Turing, VB  

Username:   Password: 
 RegisterRegister   
 help
Index -> Programming, Turing -> Turing Help
View previous topic Printable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic
Author Message
mac




PostPosted: Tue Dec 10, 2002 9:28 am   Post subject: help

write a program to count the total number of characters in a series of 10
words that you enter, and compute the average word lenght.
Sponsor
Sponsor
Sponsor
sponsor
Tony




PostPosted: Tue Dec 10, 2002 12:14 pm   Post subject: (No subject)

use length(text:string) to get the length of the string. Then add them all up and divide by total number of words.
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
mac




PostPosted: Tue Dec 10, 2002 1:28 pm   Post subject: what

what is the code bro
Tony




PostPosted: Tue Dec 10, 2002 4:44 pm   Post subject: (No subject)

come on man, learn to read outside the code box.

code:

length(text)


where text is the word. and this function outputs the lenght of it.

so

code:

var text:string := "tony"
var l:int
l := length(text)
put l

This will output 4 since word "tony" is 4 characters long.

Understand now?
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
Dan




PostPosted: Tue Dec 10, 2002 5:31 pm   Post subject: la la la

or you can do it the realy cheep way with getch

ie.

code:

var num:int:=0
var key:string(1)

loop
        getch(key)
        num += 1
end loop


well you will have to put in some if's to stop it.

i dont know why i posted this becuse tony's way is a lot better, oh well Confused
Computer Science Canada Help with programming in C, C++, Java, PHP, Ruby, Turing, VB and more!
Tony




PostPosted: Tue Dec 10, 2002 6:00 pm   Post subject: (No subject)

I think dan is doing some gargabe posts just to make himself look better Wink

lol

though if you're to use getch() then it to exit it should be something like this:

code:

loop
getch(l)
if l="Q" then
exit
else
num:=num+1
end if
end loop


though this way you can't use capital Q in any of your words... Confused
Latest from compsci.ca/blog: Tony's programming blog. DWITE - a programming contest.
Display posts from previous:   
   Index -> Programming, Turing -> Turing Help
View previous topic Tell A FriendPrintable versionDownload TopicSubscribe to this topicPrivate MessagesRefresh page View next topic

Page 1 of 1  [ 6 Posts ]
Jump to:   


Style:  
Search: