حمامه السلام نشر 2 مايو 2020 أرسل تقرير نشر 2 مايو 2020 Function that accept one input argument only the input could be int if the input is integer the function returns its number of digitsWrite a ++c 1 اقتباس
0 Mohamd Imran نشر 2 مايو 2020 أرسل تقرير نشر 2 مايو 2020 مرحباً @Manar Ramadan تفضلي ,وقمت بإضافة comments(تعليقات) لفهم وظيفة كل جزء في الكود #include <iostream> using namespace std; // Returns true if s is a number else false bool isNumber(string s) { for (int i = 0; i < s.length(); i++) if (isdigit(s[i]) == false) return false; return true; } int main() { // Saving the input in a string string str; cout << "Enter a Number" << endl; cin >> str; // Function returns 1 if all elements // are in range '0-9' if (isNumber(str)) { cout << str <<endl; cout << "Integer found"<< endl; // Function returns 0 if the input is // not an integer } else{ cout << "String found"; } } 1 اقتباس
السؤال
حمامه السلام
Function that accept one input argument only the input could be int if the input is integer the function returns its number of digitsWrite a ++c
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.