Posts by diogoBRRN • 59 points
5 posts
-
-1
votes1
answer45
viewsQ: Issue of matrices
Well, the question may be that for what Write an algorithm that reads an array A(5,2) and write it. Check, below, which elements of To are repeated and how many times each is repeated. Write each…
-
0
votes0
answers30
viewsQ: Question about square numbers (perfect squares)
I need to make an algorithm that reads any number and checks if it’s quadrangular. If it is, show the next 10 quadrangular after it. If it is not, inform. #include <stdio.h> #include…
-
3
votes4
answers744
viewsQ: How to get the highest and lowest number among 15 typed numbers? C++
An algorithm that reads 15 real numbers, and writes the largest and the smallest among the numbers read. I’m not getting to do the part of writing the smallest and largest of the numbers typed.…
-
0
votes0
answers24
viewsQ: how to place a C++ relational operator?
The exercise is to Read the value of a purchase in the Stores Your Best Purchase and show the value of the installments according to the amount of installments desired by the user. The store is…
-
0
votes1
answer62
viewsQ: algorithm to read age years, months, and years and convert the value to age only in days
#include <iostream> using namespace std; int main() { int idade; int anos; int meses; int dias; cin >> anos >> meses >> dias; meses= anos*12; dias= meses*30; cout <<…