Home
О нас
Products
Services
Регистрация
Войти
Поиск
Flower1611
@Flower1611
August 2022
2
24
Report
Пожалуйста, помогите решить на с++
с помощью массивов.
Заранее спасибо
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
CzarAlex
Verified answer
TDM-GCC 4.9.2 64-bit Release
#include <iostream>
#include <cstdlib>
#include <cmath>
int main(int argc, char *argv[])
{
system("chcp 1251 >nul");
setlocale(LC_ALL, "Russian");
int n;
scanf("%d",&n);
int mas[n], sum = 0, temp = 0;
for(int i = 0; i < n; i++)
{
scanf("%d",&mas[i]);
temp = abs(mas[i]);
while(temp >= 10)
{
sum += temp % 10;
temp /= 10;
}
sum += temp;
}
printf("%d",sum);
return EXIT_SUCCESS;
}
0 votes
Thanks 0
Flower1611
Это неправильно
eugene7870
Дэржи, если хочешь, можем разобрать код подробнее, чтобы ты понимал что тут происходит
2 votes
Thanks 0
More Questions From This User
See All
Flower1611
August 2022 | 0 Ответы
vstavte podhodyashuyu formu glagola v skobkah 1 are you still tired or do feeld1ac66712abe771f79d8cc2a80a8d14b 75267
Answer
Flower1611
August 2022 | 0 Ответы
dlya provedeniya reakcii esterifikacii vzyali propanovuyu kislotu massoj 37 g i etan
Answer
Flower1611
August 2022 | 0 Ответы
spasite tablica v microsoft access sluzhit dlya dan8e272a2a7298a63b2283af23fcea17c1 18852
Answer
Flower1611
August 2022 | 0 Ответы
reshite 5 podrobno zaranee spasibo
Answer
Flower1611
August 2022 | 0 Ответы
s polnym obyasneniem slovo kotoroe srezano perevesti
Answer
Flower1611
August 2022 | 0 Ответы
7 reshite spasibo zaranee
Answer
Flower1611
August 2022 | 0 Ответы
opredelite srednyuyu kvadratichnuyu skorost molekuly vodoroda pri temperature 300k5352012d0cf75781fe1275689355ce5f 3869
Answer
Flower1611
August 2022 | 0 Ответы
reshite 8 s podrobnym obyasneniem zaranee spasibo
Answer
Flower1611
August 2022 | 0 Ответы
M)...
Answer
Flower1611
August 2022 | 0 Ответы
3...
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 "Пожалуйста, помогите решить на с++ с помощью массивов. Заранее спасибо..."
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
Verified answer
TDM-GCC 4.9.2 64-bit Release#include <iostream>
#include <cstdlib>
#include <cmath>
int main(int argc, char *argv[])
{
system("chcp 1251 >nul");
setlocale(LC_ALL, "Russian");
int n;
scanf("%d",&n);
int mas[n], sum = 0, temp = 0;
for(int i = 0; i < n; i++)
{
scanf("%d",&mas[i]);
temp = abs(mas[i]);
while(temp >= 10)
{
sum += temp % 10;
temp /= 10;
}
sum += temp;
}
printf("%d",sum);
return EXIT_SUCCESS;
}