665
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
#include <iostream> int main() { int a = 0, b = 0; std::cin >> a >> b; if (a%b == 0 || b%a == 0) { std::cout << "Sao Multiplos" << std::endl; } else { std::cout << "Nao sao Multiplos" << std::endl; } return 0; } |
660
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <iostream> #include <cstdio> #include <vector> int main() { int number = 0, count = 0; std::cin >> number >> count; std::vector<int> arr {400, 450, 500, 200, 150}; printf("Total: R$ %.2lf", arr[number-1]*count/100.0); return 0; } |
659
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#include <iostream> int main() { double input = 0.0; std::cin >> input; if (input >= 0 && input <= 25.0) { std::cout << "Intervalo [0,25]" << std::endl; } else if (input > 25.0 && input <= 50.0) { std::cout << "Intervalo (25,50]" << std::endl; } else if (input > 50.0 && input <= 75.0) { std::cout << "Intervalo (50,75]" << std::endl; } else if (input > 75.0 && input <= 100.0) { std::cout << "Intervalo (75,100]" << std::endl; } else { std::cout << "Fora de intervalo" << std::endl; } return 0; } |
664
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include <iostream> bool istrig(double a, double b, double c) { return (a+b > c)&&(a+c > b)&&(b+c > a); } int main() { double a = 0.0, b = 0.0, c = 0.0; std::cin >> a >> b >> c; if (istrig(a, b, c)) { printf("Perimetro = %.1lf", a+b+c); } else { printf("Area = %.1lf", (a+b)*c*0.5); } return 0; } |
667
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
#include <iostream> int main() { int a = 0, b = 0; std::cin >> a >> b; if (a == b) { std::cout << "O JOGO DUROU " << 24 << " HORA(S)" << std::endl; } else if (a < b) { std::cout << "O JOGO DUROU " << b-a << " HORA(S)" << std::endl; } else { std::cout << "O JOGO DUROU " << b+24-a << " HORA(S)" << std::endl; } return 0; } |
669
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
#include <cstdio> int main() { double salry = 0.0, more = 0.0; int per = 0; scanf("%lf", &salry); more = salry; if (salry >= 0 && salry <= 400.0) { salry *= 1.15; more = salry - more; per = 15; } else if (salry >= 400.01 && salry <= 800.0) { salry *= 1.12; more = salry - more; per = 12; } else if (salry >= 800.01 && salry <= 1200.0) { salry *= 1.1; more = salry - more; per = 10; } else if (salry >= 1200.01 && salry <= 2000.0) { salry *= 1.07; more = salry - more; per = 7; } else if (salry > 2000.0) { salry *= 1.04; more = salry - more; per = 4; } printf("Novo salario: %.2lf\n", salry); printf("Reajuste ganho: %.2lf\n", more); printf("Em percentual: %d \%\n", per); return 0; } |
670
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
#include <iostream> #include <string> int main() { std::string a, b, c; std::cin >> a >> b >> c; if (a.compare("vertebrado") == 0) { if (b.compare("ave") == 0) { if (c.compare("carnivoro") == 0) { std::cout << "aguia" << std::endl; } else if (c.compare("onivoro") == 0) { std::cout << "pomba" << std::endl; } else {} } else if (b.compare("mamifero") == 0) { if (c.compare("onivoro") == 0) { std::cout << "homem" << std::endl; } else if (c.compare("herbivoro") == 0) { std::cout << "vaca" << std::endl; } else {} } else {} } else if (a.compare("invertebrado") == 0) { if (b.compare("inseto") == 0) { if (c.compare("hematofago") == 0) { std::cout << "pulga" << std::endl; } else if (c.compare("herbivoro") == 0) { std::cout << "lagarta" << std::endl; } else {} } else if (b.compare("anelideo") == 0) { if (c.compare("hematofago") == 0) { std::cout << "sanguessuga" << std::endl; } else if (c.compare("onivoro") == 0) { std::cout << "minhoca" << std::endl; } else {} } else {} } else {} return 0; } |
657
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#include <iostream> int main() { int a = 0, b = 0, c = 0, d = 0; std::cin >> a >> b >> c >> d; if (b > c && d > a && c + d > a + b && c > 0 && d > 0 && a % 2 == 0) { std::cout << "Valores aceitos" << std::endl; } else { std::cout << "Valores nao aceitos" << std::endl; } return 0; } |
671
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 |
#include <iostream> #include <unordered_map> #include <string> int main() { std::unordered_map<int, std::string> map {{61, "Brasilia"}, {71, "Salvador"}, {11, "Sao Paulo"}, {21, "Rio de Janeiro"}, {32, "Juiz de Fora"}, {19, "Campinas"}, {27, "Vitoria"}, {31, "Belo Horizonte"}}; int number = 0; std::cin >> number; auto ite = map.find(number); if (ite != map.end()) { std::cout << ite->second << std::endl; } else { std::cout << "DDD nao cadastrado" << std::endl; } return 0; } |
662
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
#include <iostream> int main() { float x = 0.0, y = 0.0; std::cin >> x >> y; if (x == 0.0 && y == 0.0) { std::cout << "Origem" << std::endl; } else if (x == 0.0 && y != 0.0) { std::cout << "Eixo Y" << std::endl; } else if (x != 0 && y == 0.0) { std::cout << "Eixo X" << std::endl; } else if (x > 0.0 && y > 0.0) { std::cout << "Q1" << std::endl; } else if (x < 0.0 && y > 0.0) { std::cout << "Q2" << std::endl; } else if (x < 0.0 && y < 0.0) { std::cout << "Q3" << std::endl; } else { std::cout << "Q4" << std::endl; } return 0; } |
666
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 |
#include <iostream> void sort_arr(float arr[], int length) { int last_exchange = 0; int sorted_borer = length - 1; for (int i = 0; i < length - 1; ++i) { bool is_sorted = true; for (int j = 0; j < sorted_borer; ++j) { if (arr[j] < arr[j + 1]) { arr[j] = arr[j] + arr[j + 1]; arr[j + 1] = arr[j] - arr[j + 1]; arr[j] = arr[j] - arr[j + 1]; is_sorted = false; last_exchange = j; } } sorted_borer = last_exchange; if (is_sorted) { break; } } } int main() { float arr[3] = {0.0}; std::cin >> arr[0] >> arr[1] >> arr[2]; sort_arr(arr, 3); float a = arr[0], b = arr[1], c = arr[2]; if (a >= b + c) { std::cout << "NAO FORMA TRIANGULO" << std::endl; } else if (a * a == b * b + c * c) { std::cout << "TRIANGULO RETANGULO" << std::endl; } else if (a * a > b * b + c * c) { std::cout << "TRIANGULO OBTUSANGULO" << std::endl; } else if (a * a < b * b + c * c) { std::cout << "TRIANGULO ACUTANGULO" << std::endl; } if (a == b && b == c) { std::cout << "TRIANGULO EQUILATERO" << std::endl; } else if (a == b || b == c) { std::cout << "TRIANGULO ISOSCELES" << std::endl; } return 0; } |
668
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 |
#include <iostream> int h2m(int h, int m) { return h*60 + m; } int get_h(int min) { return min/60; } int get_m(int min) { return min - get_h(min)*60; } int main() { int a = 0, b = 0, c = 0, d = 0; std::cin >> a >> b >> c >> d; int hours = 0, min = 0; if (a == c) { if (b == d) { hours = 24; min = 0; } else if (b > d) { hours = 23; min = d+60-b; } else { hours = 0; min = d-b; } } else if (a < c) { int end = h2m(c, d); int start = h2m(a, b); hours = get_h(end - start); min = get_m(end - start); } else { c += 24; int end = h2m(c, d); int start = h2m(a, b); hours = get_h(end - start); min = get_m(end - start); } std::cout << "O JOGO DUROU " << hours << " HORA(S) E " << min << " MINUTO(S)" << std::endl; return 0; } |
672
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
#include <iostream> #include <cstdio> int main() { double money = 0.0; std::cin >> money; if (money >= 0 && money <= 2000.00) { printf("Isento"); } else if (money >= 2000.01 && money <= 3000.00) { printf("R$ %.2lf\n", (money-2000.00)*0.08); } else if (money >= 3000.01 && money <= 4500.00) { printf("R$ %.2lf\n", (money-3000.00)*0.18+(1000.00*0.08)); } else if (money >= 4500.00) { printf("R$ %.2lf\n", (money-4500.00)*0.28+(1000.00*0.08)+(1500.00*0.18)); } return 0; } |
663
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
#include <iostream> void sort_arr(int arr[], int length) { int last_exchange = 0; int sored_border = length - 1; for (int i = 0; i < length - 1; ++i) { bool is_sored = true; for (int j = 0; j < sored_border; ++j) { if (arr[j] > arr[j+1]) { arr[j] = arr[j] + arr[j+1]; arr[j+1] = arr[j] - arr[j+1]; arr[j] = arr[j] - arr[j+1]; is_sored = false; last_exchange = j; } } sored_border = last_exchange; if (is_sored) { break; } } } int main() { int arr[3] = {0}; int a = 0, b = 0, c = 0; std::cin >> arr[0] >> arr[1] >> arr[2]; a = arr[0]; b = arr[1]; c = arr[2]; sort_arr(arr, 3); std::cout << arr[0] << std::endl; std::cout << arr[1] << std::endl; std::cout << arr[2] << std::endl; std::cout << std::endl; std::cout << a << std::endl; std::cout << b << std::endl; std::cout << c << std::endl; return 0; } |
658
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
#include <cstdio> #include <cmath> bool is_valid(double a, double b, double c) { if (a == 0 || b*b < 4*a*c) { return false; } return true; } int main() { double a = 0.0, b = 0.0, c = 0.0; scanf("%lf%lf%lf", &a, &b, &c); if (!is_valid(a, b, c)) { printf("Impossivel calcular\n"); } else { printf("R1 = %.5lf\n", (sqrt(b*b-4*a*c)-b)/(2*a)); printf("R2 = %.5lf\n", (-sqrt(b*b-4*a*c)-b)/(2*a)); } return 0; } |
661
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
#include <iostream> #include <cstdio> int main() { double a = 0.0, b = 0.0, c = 0.0, d = 0.0; std::cin >> a >> b >> c >> d; double res = 0.0; res = (a*2+b*3+c*4+d)/10.0; if (res < 5.0) { printf("Media: %.1lf\n", res); printf("Aluno reprovado.\n"); } else if (res >= 7.0) { printf("Media: %.1lf\n", res); printf("Aluno aprovado.\n"); } else { double othr = 0.0; scanf("%lf", &othr); printf("Media: %.1lf\n", res); printf("Aluno em exame.\n"); printf("Nota do exame: %.1lf\n", othr); double fina = 0.0; fina = (res + othr) / 2.0; if (fina >= 5.0) { printf("Aluno aprovado.\n"); } else { printf("Aluno reprovado.\n"); } printf("Media final: %.1lf", fina); } return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 【AcWing 语法基础课 第五讲】02/28
- ♥ 【Nowcoder-May】05/09
- ♥ 【LeetCode-Mar-链表一】03/24
- ♥ 【LeetCode-Aug】08/10
- ♥ 【LeetCode-Apr-链表二】04/02
- ♥ 【AcWing 语法基础课 第六讲】03/02