Compare commits

..

No commits in common. "937af5fba41cdd7c2871d3a09213a513e1fd78e4" and "8f5fa9a3edc8ef482aae06bc080357f94dc1c867" have entirely different histories.

5 changed files with 0 additions and 60 deletions

View File

@ -1,9 +0,0 @@
#include <cstdio>
int main()
{
int a, b;
scanf("%d%d", &a, &b);
printf("PROD = %d\n", a * b);
return 0;
}

View File

@ -1,11 +0,0 @@
#include <cstdio>
int main()
{
int a, b, d, e;
double c, f;
scanf("%d%d%lf", &a, &b, &c);
scanf("%d%d%lf", &d, &e, &f);
printf("VALOR A PAGAR: R$ %.2lf\n", b * c + e * f);
return 0;
}

View File

@ -1,13 +0,0 @@
#include <iostream>
using namespace std;
const double pi = 3.14159;
int main()
{
int R;
cin >> R;
printf("VOLUME = %.3lf", (4 / 3.0) * pi * R * R * R);
return 0;
}

View File

@ -1,13 +0,0 @@
#include <cstdio>
int main()
{
double A, B, C;
scanf("%lf%lf%lf", &A, &B, &C);
printf("TRIANGULO: %.3lf\n", A * C / 2);
printf("CIRCULO: %.3lf\n", 3.14159 * C * C);
printf("TRAPEZIO: %.3lf\n", (A + B) * C / 2);
printf("QUADRADO: %.3lf\n", B * B);
printf("RETANGULO: %.3lf\n", A * B);
return 0;
}

View File

@ -1,14 +0,0 @@
#include <cstdio>
int main()
{
int N;
int h, m, s;
scanf("%d", &N);
h = N / (60 * 60);
m = N % (60 * 60) / 60;
// s = N - h * (60 * 60) - m * 60;
s = N % 60;
printf("%d:%d:%d", h, m, s);
return 0;
}