Home
О нас
Products
Services
Регистрация
Войти
Поиск
lsvetik267ls
@lsvetik267ls
July 2022
1
5
Report
ЗАДАЧА: дан массив А из 20 чисел. найти элемент, косинус которого минимальный,результаты распечатать в виде
а(i)=
соs a(i)=
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
hesed
На Си:
#include <stdio.h>
#include <string.h>
#include <math.h>
#define SIZE 20
int main(void) {
double a[SIZE];
int i;
for (i = 0; i < SIZE; i++) {
scanf("%lf", &a[i]);
}
double max[3];
for (i = 0; i < (SIZE - 1); i++) {
if (cos(a[i]) > cos(a[i + 1])) {
max[0] = cos(a[i]);
max[1] = a[i];
max[2] = i;
}
}
printf("a[%d]=%lf\n", (int) max[2], max[1]);
printf("cos a[%d]=%lf\n", (int) max[2], max[0]);
return 0;
}
0 votes
Thanks 0
More Questions From This User
See All
lsvetik267ls
August 2022 | 0 Ответы
ukazhite nomera vernyh utverzhdenij 1 esli dve parallelnye pryamye peresecheny tr8d383a8f2c353f3a62b8f034d235663f 35787
Answer
lsvetik267ls
August 2022 | 0 Ответы
bassejn napolnyaetsya dvumya trubami dejstvuyushimi odnovremenno za 2 chasa za skola16d2e0ac707a1f47d907f2a2b6026c1 56531
Answer
lsvetik267ls
August 2022 | 0 Ответы
cenu enciklopedii uvelichili na 20 i ona stala stoit 420 rublej skolko ruble4bcc1acee8fbf3f28b9e830e4db01535 80428
Answer
lsvetik267ls
August 2022 | 0 Ответы
it in several hours vyberite odin otvet a destroy b will be destroyed c
Answer
lsvetik267ls
August 2022 | 0 Ответы
ergosterolinto vitamin d in several hours vyberite odin otvet a are tran
Answer
lsvetik267ls
August 2022 | 0 Ответы
Functional Components in nuts (monounsaturated fatty acids and vitamin E (antiox...
Answer
lsvetik267ls
August 2022 | 0 Ответы
the sugar is dissolved and carried to all parts as foodthe juice of the plant
Answer
lsvetik267ls
August 2022 | 0 Ответы
iron first in egg yolks liver meat spinach vyberite odin otvet a is f
Answer
lsvetik267ls
August 2022 | 0 Ответы
Fortified margarines with functional components such plant sterol and stanol est...
Answer
lsvetik267ls
August 2022 | 0 Ответы
the materialat the moment vyberite odin otvet a have been presented b w
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 "ЗАДАЧА: дан массив А из 20 чисел. найти элемент, косинус которого минимальный,ре..."
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 <stdio.h>
#include <string.h>
#include <math.h>
#define SIZE 20
int main(void) {
double a[SIZE];
int i;
for (i = 0; i < SIZE; i++) {
scanf("%lf", &a[i]);
}
double max[3];
for (i = 0; i < (SIZE - 1); i++) {
if (cos(a[i]) > cos(a[i + 1])) {
max[0] = cos(a[i]);
max[1] = a[i];
max[2] = i;
}
}
printf("a[%d]=%lf\n", (int) max[2], max[1]);
printf("cos a[%d]=%lf\n", (int) max[2], max[0]);
return 0;
}