Home
О нас
Products
Services
Регистрация
Войти
Поиск
kalabukhov
@kalabukhov
July 2022
1
9
Report
Помогите, срочно. 8 вариант. С++
Please enter comments
Please enter your name.
Please enter the correct email address.
Agree to
terms of service
You must agree before submitting.
Send
Answers & Comments
clinteastwood2
#include <iostream>
#include <string>
using namespace std;
unsigned sum(const string &str)
{
unsigned result = 0;
for (unsigned i = 0; str[i] != '\0'; ++i) {
if (str[i] > '0' && str[i] <= '9') {
result += (str[i] - '0');
}
}
return result;
}
int main()
{
string str("ab25c539fh7");
cout << "Result: " << sum(str) << endl;
return 0;
}
0 votes
Thanks 0
clinteastwood2
https://ideone.com/YGm2Wr
More Questions From This User
See All
kalabukhov
August 2022 | 0 Ответы
uslovie dlya grafika if
Answer
kalabukhov
August 2022 | 0 Ответы
najdite zashtrihovannuyu oblast na pervom risunkeprimer na risunkah 2 3 4
Answer
kalabukhov
July 2022 | 0 Ответы
kakoe budet uslovie dlya grafika if
Answer
kalabukhov
July 2022 | 0 Ответы
napisat programmu dlya vychisleniya znachenij funkcii v tochkah ot xx1 do xxn
Answer
kalabukhov
July 2022 | 0 Ответы
pomogite pozhalujsta najdite ploshad chetyrehugolnika vershiny kotorogo imeyut koo
Answer
kalabukhov
July 2022 | 0 Ответы
x); break; case 2: f=exp(y); break; case 3: f=log(x*y); break; default: printf("...
Answer
kalabukhov
July 2022 | 0 Ответы
pomogite pozhalujsta s anglijskim zadanie na fotoc7e955424e0426ea3c4247c496d778a3 98644
Answer
kalabukhov
October 2021 | 0 Ответы
napisat uravnenie grafika dlya programmy ris 1 primer na ris 2
Answer
рекомендуемые вопросы
rarrrrrrrr
August 2022 | 0 Ответы
o chem dolzhny pozabotitsya v pervuyu ochered vzroslye pri organizacionnom vyvoze n
danilarsentev
August 2022 | 0 Ответы
est dva stanka na kotoryh vypuskayut odinakovye zapchasti odin proizvodit a zapcha
myachina8
August 2022 | 0 Ответы
najti po grafiku otnoshenie v3v1 v otvetah napisano 9 no nuzhno reshenie
ydpmn7cn6w
August 2022 | 0 Ответы
Choose the correct preposition: 1.I am fond (out,of,from) literature. 2.where ar...
millermilena658
August 2022 | 0 Ответы
opredelite kak sozdavalas i kto sozdaval arabskoe gosudarstvo v kracii
MrZooM222
August 2022 | 0 Ответы
ch ajtmanov v rasskaze krasnoe yabloko ispolzuet metod rasskaz v rasskaze opi
timobila47
August 2022 | 0 Ответы
kakovo bylo naznachenie kazhdoj iz chastej vizantijskogo hrama pomogite pozhalujsta
ivanyyaremkiv
August 2022 | 0 Ответы
moment. 6....
pozhalujsta8b98a56c0152a07b8f4cbcd89aa2f01e 97513
sarvinozwakirjanova
August 2022 | 0 Ответы
pomogite pozhalusto pzha519d7eb8246a08ab0df06cc59e9dedb 6631
×
Report "Помогите, срочно. 8 вариант. С++..."
Your name
Email
Reason
-Select Reason-
Pornographic
Defamatory
Illegal/Unlawful
Spam
Other Terms Of Service Violation
File a copyright complaint
Description
Helpful Links
О нас
Политика конфиденциальности
Правила и условия
Copyright
Контакты
Helpful Social
Get monthly updates
Submit
Copyright © 2024 SCHOLAR.TIPS - All rights reserved.
Answers & Comments
#include <string>
using namespace std;
unsigned sum(const string &str)
{
unsigned result = 0;
for (unsigned i = 0; str[i] != '\0'; ++i) {
if (str[i] > '0' && str[i] <= '9') {
result += (str[i] - '0');
}
}
return result;
}
int main()
{
string str("ab25c539fh7");
cout << "Result: " << sum(str) << endl;
return 0;
}