Question

Assume there is a string s. Print out “Not found” if s does not contain the...

Assume there is a string s. Print out “Not found” if s does not contain the letter ‘x’ otherwise print the index. c++

0 0
Add a comment Improve this question Transcribed image text
Answer #1
// Assuming s is already declared and initialized a value
bool foundX = false;    // set found to false
for (int i = 0; i < s.size(); ++i) {    // go through all characters of String s
    if (s[i] == 'x')    // if character is 'x'
        foundX = true;  // then set found to true
}
if (foundX) // if x is found
    cout << "Not found";    // then print Not found
Add a comment
Know the answer?
Add Answer to:
Assume there is a string s. Print out “Not found” if s does not contain the...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • What would be the output of the following code? def get_letter_index(letter, string): returns the index of...

    What would be the output of the following code? def get_letter_index(letter, string): returns the index of letter in string, OR if letter is not found in string, prints that information instead. If the letter occurs multiple times, this returns only the first index where the letter is found. Index where the letter is found for i in range(len(string)): if string[i] == letter: return i #if execution reaches this point, we must not have found the letter print(letter, "not found in",...

  • Use a for loop to print out the string with spaces in between each letter code.cpp...

    Use a for loop to print out the string with spaces in between each letter code.cpp New 1 #include iostream> 2 #include <string> 4 using namespace std; 5 //Use a for loop to print out the string with spaces in between each letter int main() 7 string str "Hello World"; 葌 9

  • Design a JAVA class called Course. The class should contain: ○ The data fields courseName (String),...

    Design a JAVA class called Course. The class should contain: ○ The data fields courseName (String), numberOfStudents (int) and courseLecturer (String). ○ A constructor that constructs a Course object with the specified courseName, numberOfStudents and courseLecturer. ○ The relevant get and set methods for the data fields. ○ A toString() method that formats that returns a string that represents a course object in the following format: (courseName, courseLecturer, numberOfStudents) ● Create a new ArrayList called courses1, add 5 courses to...

  • Can someone help me out with this? You are given a program that receives four lines...

    Can someone help me out with this? You are given a program that receives four lines in the below format, and stores them in str1, str2, str3, and num1. This is not a very long sentence. is long 4 Expand this program to: Write an if-elseif-else statement to print this line only if num1 is higher than 0: "Num1 is higher than 0!" print this line only if num1 is 0: "Num1 equals to 0!" And otherwise, print: ""Num1 is...

  • The variable "s" contains a string value. Which of the following will print each character in...

    The variable "s" contains a string value. Which of the following will print each character in this string exactly one time? # Option A for ch in s: print(ch) # Option B countB = 0 while countB < len(s): print(s[countB]) countB += 1 # Option C countC = len(s) - 1 while countC >= 0: print(s[countC]) countC -= 1 Option A Option B Option C All of the above None of the above

  • Using python Print out the subset of the string defined by the two integer parameters in...

    Using python Print out the subset of the string defined by the two integer parameters in a descriptive string by using string formatting.    Arguments: a string : the string can be of any length two integers : the integers can be positive or negative Note: it can be assumed that the two parameters will be valid indices in the string    Return: None    >>> stringFormatting("Cookies are delicious", 3, 5) prints the line : "The characters in positions 3...

  • and then print their average. Write a C program that accepts a string of text from...

    and then print their average. Write a C program that accepts a string of text from the user and prints back the string without any of the vowels. For example, if the user entered "Hello, world", the program should print "Hll, wrld" Write a C program that accepts an integer in decimal from the user and prints the number of 1' bits in the integers binary representation. For example, if the user entered 14, the program should print 3 because...

  • In Java, you'll find that it contains several methods that have not yet been finished. For now, the methods contain...

    In Java, you'll find that it contains several methods that have not yet been finished. For now, the methods contain only a placeholder return value so that the code will compile. Fill in your own implementation. public class SomePracticeStringMethods { /* * returns true if c is a letter in the word "temple" or false otherwise */ public static boolean inTU(char c) { /* placeholder just so that the function * compiles. fill in your implementation here. * * there...

  • Call each of the print functions in the main() using string double-pointers in the main void...

    Call each of the print functions in the main() using string double-pointers in the main void print(string ** s){             **s = "Hello";             cout<< **s <<endl; } void print(string *x){             *x = "World";             cout<<*x<<endl; }

  • Do in Python Problem 2 Assume s is a string of lower case characters. Write a...

    Do in Python Problem 2 Assume s is a string of lower case characters. Write a program that prints the number of times the string ' lol' occurs in s For example, if s= 'azclololegghakl', then your program should print S Number of times lol occu rs is: 2 Problem 3 Assume s is a string of lower case characters Write a program that prints the longest substring of s in which the letters occur in alphabetical order. For example,...

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT