इस प्रोग्राम में हम देखेंगे कि C++ में एक स्ट्रिंग से अनुगामी शून्य को कैसे हटाया जाए। कभी-कभी कुछ स्ट्रिंग में "00023054" जैसे अनुगामी शून्य हो सकते हैं। इस प्रोग्राम को निष्पादित करने के बाद, यह केवल "23054" लौटाएगा। प्रारंभिक शून्य हटा दिए जाते हैं।
Input: A string with trailing zeros “000023500124” Output: “23500124”
एल्गोरिदम
Step 1: Get the string Step 2: Count number of trailing zeros n Step 3: Remove n characters from the beginning Step 4: return remaining string.
उदाहरण कोड
#include<iostream> using namespace std; main() { string my_str = "000023500124"; int num = 0; cout << "Number with Trailing Zeros :" << my_str << endl; //count number of trailing zeros in the string while(my_str[num] == '0') { num++; } my_str.erase(0, num); //erase characters from 0 to i index cout << "Number without Trailing Zeros :" << my_str; }
आउटपुट
Number with Trailing Zeros :000023500124 Number without Trailing Zeros :23500124