Difference between revisions of "Testing if a character is in a word"

From TRCCompSci - AQA Computer Science
Jump to: navigation, search
Line 1: Line 1:
 +
<syntaxhighlight lang=csharp line>
 +
Console.WriteLine("please enter a word:");
 +
string word = Console.ReadLine();
 +
Console.WriteLine("please enter part of the word:");
 +
string part  = Console.ReadLine();
 +
 +
if(word.Contains(part))
 +
{
 +
Console.WriteLine("Part found");
 +
}
 +
else
 +
{
 +
Console.WriteLine("Part not found: ");
 +
}
 +
 +
Console.ReadLine();
 +
</syntaxhighlight>
 +
 
<syntaxhighlight lang=csharp line>
 
<syntaxhighlight lang=csharp line>
 
Console.WriteLine("please enter a word:");
 
Console.WriteLine("please enter a word:");

Revision as of 11:50, 15 June 2023

 1 Console.WriteLine("please enter a word:");
 2 string word = Console.ReadLine();
 3 Console.WriteLine("please enter part of the word:");
 4 string part  = Console.ReadLine();
 5 
 6 if(word.Contains(part))
 7 {
 8 	Console.WriteLine("Part found");
 9 }
10 else
11 {
12 	Console.WriteLine("Part not found: ");
13 }
14 
15 Console.ReadLine();
 1 Console.WriteLine("please enter a word:");
 2 string word = Console.ReadLine();
 3 string vowels = "aeiou";
 4 		
 5 foreach(char c in word)
 6 {
 7 	if(vowels.Contains(c.ToString()))
 8 	{
 9 		Console.WriteLine("Vowel found: "+c);
10 	}
11 }
12 	
13 Console.ReadLine();