Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
letter
- Page 1
Re: Contact form does not working
Programming
Web Development
2 Months Ago
by gediminas.bukauskas.7
… registered server only. Even if you manage to send a
letter
somehow it will not reach the recipient or will be…
Re: ‘Advanced AI should be treated similar to Weapons of Mass Destruction’
Community Center
2 Months Ago
by rproffitt
UPDATE: Feb 4, 2025 — Google on Tuesday updated its ethical guidelines around artificial intelligence, removing commitments not to apply the technology to weapons or surveillance.
Letter not found. . .
Programming
Software Development
12 Years Ago
by Summer995
…do { Console.Write("Please enter a new
letter
: " ); guess = Console.ReadKey().KeyChar;…else { Console.WriteLine("You can only enter
letter
values, please re-enter choice."); repeat …
Re: letter pyramid
Programming
Software Development
18 Years Ago
by dc87
… is not a lowercase
letter
enter a lowercase
letter
"); } else {
letter
=
letter
-32; for(
letter
='A';
letter
<96 ||
letter
>122;
letter
++) { for(spaces=0; spaces…
letter pyramid
Programming
Software Development
18 Years Ago
by dc87
…is not a
letter
, enter a lowercase
letter
:= That is not a
letter
, enter a lowercase
letter
:! That is not a
letter
, enter a lowercase… -ABCDCBA ABCDEDCBA [/quote] [quote] example 2 Type a single lowercase
letter
and press enter: p ---------------A --------------ABA -------------ABCBA ------------ABCDCBA -----------ABCDEDCBA …
Re: letter pyramid
Programming
Software Development
18 Years Ago
by iamthwee
…is not a
letter
, enter a lowercase
letter
:= That is not a
letter
, enter a lowercase
letter
:! That is not a
letter
, enter a …ABA ABCBA ABCDCBA ABCDEDCBA example 2 Type a single lowercase
letter
and press enter: p A ABA ABCBA ABCDCBA ABCDEDCBA…
Re: letter pyramid
Programming
Software Development
18 Years Ago
by WaltP
[code] else {
letter
=
letter
-32; for(
letter
='A';
letter
<96 ||
letter
>122;
letter
++) { [/code] Your [I]for[/I] statement just destroyed the
letter
you typed in…
Letter guessing game help?
Programming
Software Development
10 Years Ago
by aundriaah
… %d\n", i); //check for win or lose SingleGame (
letter
); } //close file fclose(infile); return 0; } int SingleGame(char…RetrieveGuess); } else if(file_letter<RetrieveGuess); { printf("The
letter
you are trying to guess comes after:%d\n"…
Re: letter merge
Programming
Web Development
14 Years Ago
by Lsmjudoka
… letterid='$letterid'"; $result = mysql_query($query); $letter_array = mysql_fetch_array($result); $
letter
= $letter_array['
letter
']; // $clientid should be the id of the client who's… viewing the
letter
$query = "SELECT name FROM Clients WHERE clientid='$clientid'"…
Re: letter pyramid
Programming
Software Development
18 Years Ago
by dc87
i also know that using the spaces are generated by the
letter
-a. lets say the user types in
letter
e the ascii value is 101 -
letter
a which is accii value 97 that would create the number of spaces which is 4
Letter guessing game assignment...?
Programming
Software Development
11 Years Ago
by victor_3
…for(i=0;i<=gamesToPlay;i++) { //get a
letter
from file fscanf(infile," %c",&ans); … else { if(solution>getguess) { printf("the
letter
you are trying to guess comes before:%d\n"…
letter Frequencies c++
Programming
Software Development
14 Years Ago
by shyla
… is the most frequently used
letter
in the english language, and the
letter
z is the lease used. a friend of yours… that will take a text file and print, for each
letter
of the english alphabet, the number of times the…
letter
appears in the file hint: use an integer array of …
Letter guessing game assignment? Help
Programming
Software Development
11 Years Ago
by karma2you
…char guess(); // This function returns a random
letter
between "A" and "Z… { printf("Hello, and Welcome to
Letter
Guess Game:\n"); printf("I have…; MAX_GUESSES) { printf("Enter your choice of
letter
\n"); scanf("%c",&entered_char); …
letter pair analysis
Programming
Software Development
10 Years Ago
by bensila4
… do.am stuck please somebody help me out Frequency of
letter
pairs Write a program to count the occurrences of all…
letter
pairs in a sample of text (like the first paragraph … are not considered as letters). Output the 100 most frequent
letter
pairs, in order by percent of total. Also show which…
Re: letter pair analysis
Programming
Software Development
10 Years Ago
by iamthwee
I'd read it in
letter
by
letter
. The trick to get two
letter
pairs is to point it 2 letters infront.
Re: letter and word counter
Programming
Software Development
20 Years Ago
by 1o0oBhP
… test string \t \n"; // 5 words.... char
letter
; // comparison
letter
while (
letter
= *str++) { if(
letter
== ' ' ||
letter
== '\t' ||
letter
== '\n') { inword = 0; } else if(inword == 0…
Re: Letter counter project help
Programming
Software Development
15 Years Ago
by Draculaboy1014
…("Enter a word"); System.out.println("Enter
letter
that you wish to count"); } } [/CODE] All I want… to do is scan the input
letter
and send it to the char named
letter
, and scan the string send it… also and with that a function that counts the
letter
in the string,returns the int value and then print…
Letter Swaps
Programming
Software Development
17 Years Ago
by Altarium
… user would type in a number for lets say the
letter
"e", in this case 4 Then the user… would select a
letter
to swap with, lets say the
letter
"m", in this case 1…
Letter Counter homework help
Programming
Software Development
15 Years Ago
by Consus
…) with the following members: i. field of type char named
letter
ii. a method of return type int named doCount(String… returns the number of times the character in the variable
letter
occurs in the given string. 4)create a Junit test… Basically I know I need: a char variable for the
letter
which the user would give a value to a string…
Letter counter project help
Programming
Software Development
15 Years Ago
by Draculaboy1014
…following members: i. A eld of type char named
letter
. ii. A method of return type int, named doCount…returns the number of times the character in the variable
letter
occurs in the given String. (d) Create a … your help. [CODE]public class LetterCounter { public char
letter
= ' '; public int doCount(){ } } [/CODE]
letter merge
Programming
Web Development
14 Years Ago
by andydeans
… a site where the user can copy and paste a
letter
they typed on their pc into an HTML editor in… specific code tag that when they are keying on the
letter
they can be specific to where the want the clients… a button that auto adds this in when keying the
letter
would be a great idea or something simple like <…
Re: letter pair analysis
Programming
Software Development
10 Years Ago
by tinstaafl
You will probably want to use a a container like a map which will take key/value pairs. The two
letter
combination is the key and the value is the count.
Re: Letter counter project help
Programming
Software Development
15 Years Ago
by Draculaboy1014
…: "); String word_input = scanner.nextLine(); System.out.println("Enter
letter
that you wish to count: "); char letter_input = scanner.nextLine… have a problem as to how to send the scanned
letter
and word to LetterCounter.java so it can perform the…
Re: letter merge
Programming
Web Development
14 Years Ago
by andydeans
… want to add in placeholders when they are inserting the
letter
into the database and then when the produce that…
letter
for a client it recognizes where the user had put …
Re: Letter Swaps
Programming
Software Development
17 Years Ago
by bumsfeld
You would have to make sure that the string does not have several equal
letter
pairs. Note that strings are immutable. so you have to convert the string into list of letters to do the actual swapping and convert back to string, easy to do.
Re: Letter Swaps
Programming
Software Development
17 Years Ago
by bumsfeld
There is problem, if your string has several
letter
'e', how would the program know which one to swap with for instance the 'm'?
Re: Letter Swaps
Programming
Software Development
17 Years Ago
by Altarium
How can i turn a single string like "movie" and put each
letter
into an array separately like: word = ['m','o','v','i','e'] Thanks for all the help, I'm new to programming so i apologize for some probably stupid questions!
Letter Grade Array
Programming
Software Development
16 Years Ago
by bpacheco1227
… numbers in the array and display and also detemine the
letter
grade and display. I've managed to average the numbers…" End If result = result & vbCrLf & _ "
Letter
Grade: " & Format(letterGrade) TextBox1.Text = result End Sub…
Letter grade function
Programming
Software Development
14 Years Ago
by Bri426
… test scores and then from the inputted numbers, return the
letter
grade. I've begun writing the LetterGrade function, but it… a strange array of numbers/letters instead of the actual
letter
grade. If someone could look it over, i'd appreciate…
Re: letter frequency C++
Programming
Software Development
14 Years Ago
by Ancient Dragon
IMHO the easiest way to count
letter
frequencies is to use an array of 255 elements -- which … count all possible characters. Then you can just use the
letter
itself as the index into the array. Like this simple…; i++) { if( counts[i] > 0) cout << "
Letter
" << (char)i << " is "…
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC