Write a C++ program to check whether a given string starts with "F" or ends with "B". If the string starts with "F" return "Fizz" and return "Buzz" if it ends with "B" If the string starts with "F" and ends with "B" return "FizzBuzz". In other cases return the original string

  • برمجة سي بلس بلس
  • برمجة

Write a C++ program to check whether a given string starts with "F" or ends with "B". If the string starts with "F" return "Fizz" and return "Buzz" if it ends with "B" If the string starts with "F" and ends with "B" return "FizzBuzz". In other cases return the original string

Sample Output:

FizzBuzz 
Fizz 
Buzz 
Founder 

الأجوبة

#include <iostream>
 
using namespace std;

string test(string str)
        {
            if ((str.substr(0, 1)=="F") && (str.substr(str.length()-1,1)=="B"))
            {
                return "FizzBuzz";
            }
            else if (str.substr(0, 1)=="F")
            {
                return "Fizz";
            }
            else if (str.substr(str.length()-1,1)=="B")
            {
                return "Buzz";
            }
            else
            {
                return str;
            }
        }
        
int main() 
 {
  cout << test("FB") << endl; 
  cout << test("Fsafs") << endl; 
  cout << test("AuzzB") << endl; 
  cout << test("founder") << endl; 
  return 0;      
}
هل كان المحتوى مفيد؟

تبحث عن مدرس اونلاين؟

محتاج مساعدة باختيار المدرس الافضل؟ تواصل مع فريقنا الان لمساعدتك بتأمين افضل مدرس
ماهو التخصص الذي تبحث عنه؟
اكتب هنا...