1
1 2 3 4 5 6 7 |
#include <iostream> int main() { int a, b; std::cin >> a >> b; std::cout << a + b << std::endl; } |
608
1 2 3 4 5 6 7 8 |
#include <stdio.h> int main() { int a = 0, b = 0, c = 0, d = 0; scanf("%d%d%d%d", &a, &b, &c, &d); printf("DIFERENCA = %d", a*b -c*d); return 0; } |
604
1 2 3 4 5 6 7 8 9 10 11 |
#include <stdio.h> int main() { double pi = 3.14159; double radis = 0.0; scanf("%lf", &radis); printf("A=%.4lf", pi*radis*radis); return 0; } |
606
1 2 3 4 5 6 7 8 9 |
#include <stdio.h> int main() { double a = 0.0, b = 0.0; scanf("%lf%lf", &a, &b); printf("MEDIA = %.5lf", (a*3.5+b*7.5)/11); return 0; } |
609
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <stdio.h> int main() { int num= 0, hours = 0; double hours_money = 0.0; scanf("%d%d%lf", &num, &hours, &hours_money); printf("NUMBER = %d\n", num); printf("SALARY = U$ %.2lf", hours*hours_money); return 0; } |
615
1 2 3 4 5 6 7 8 9 |
#include <stdio.h> int main() { double a = 0.0, b = 0.0; scanf("%lf%lf", &a, &b); printf("%.3lf km/l", a/b); return 0; } |
616
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <cstdio> #include <cmath> int main() { double x1 = 0.0, y1 = 0.0; double x2 = 0.0, y2 = 0.0; scanf("%lf%lf", &x1, &y1); scanf("%lf%lf", &x2, &y2); printf("%.4lf", sqrt((x2-x1)*(x2-x1)+(y2-y1)*(y2-y1))); return 0; } |
653
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
#include <iostream> #include <vector> int main() { int money = 0; std::cin >> money; std::cout << money << std::endl; std::vector<int> item{100, 50, 20, 10, 5, 2, 1}; for (size_t i = 0; i < 7; ++i) { auto count = 0; if (money >= item[i]) { count = money / item[i]; money %= item[i]; } std::cout << count << " nota(s) de R$ "<< item[i] << ",00" << std::endl; } return 0; } |
654
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
#include <iostream> int main() { int number = 0; std::cin >> number; int hours = 0, min = 0, second = 0; hours = number / 3600; if (hours > 0) { number %= 3600; } min = number / 60; if (min > 0) { number %= 60; } second = number; std::cout << hours << ":" << min << ":" << second << std::endl; return 0; } |
605
1 2 3 4 5 6 7 8 9 10 11 |
#include <iostream> int main() { int a = 0, b = 0; std::cin >> a >> b; std::cout << "PROD = " << a*b << std::endl; return 0; } |
611
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <cstdio> int main() { int num1 = 0, count1 = 0, num2 = 0, count2 = 0; double pri1 = 0.0, pri2 = 0.0; scanf("%d%d%lf", &num1, &count1, &pri1); scanf("%d%d%lf", &num2, &count2, &pri2); printf("VALOR A PAGAR: R$ %.2lf\n", count1*pri1+count2*pri2); return 0; } |
612
1 2 3 4 5 6 7 8 9 10 11 12 |
#include <cstdio> double pi = 3.14159; int main() { int radis = 0; scanf("%d", &radis); printf("VOLUME = %.3lf", 4/3.0*pi*radis*radis*radis); return 0; } |
613
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
#include <iostream> #include <cstdio> const double pi = 3.14159; int main() { double a = 0.0, b = 0.0, c = 0.0; std::cin >> a >> b >> c; printf("TRIANGULO: %.3lf\n", 0.5*a*c); printf("CIRCULO: %.3lf\n", pi*c*c); printf("TRAPEZIO: %.3lf\n", 0.5*(a+b)*c); printf("QUADRADO: %.3lf\n", b*b); printf("RETANGULO: %.3lf\n", a*b); return 0; } |
607
1 2 3 4 5 6 7 8 9 10 |
#include <iostream> #include <cstdio> int main() { double a = 0.0, b = 0.0, c = 0.0; std::cin >> a >> b >> c; printf("MEDIA = %.1lf", (a*2+b*3+c*5)/10.0); return 0; } |
610
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#include <iostream> #include <cstdio> #include <cstring> int main() { std::string name; double base = 0.0, count = 0.0; std::cin >> name >> base >> count; printf("TOTAL = R$ %.2lf", base+count*0.15); return 0; } |
614
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
#include <iostream> int max(int lhs, int rhs) { return (lhs < rhs) ? rhs : lhs; } int main() { int a = 0, b = 0, c = 0, max_res =0; std::cin >> a >> b >> c; max_res = max(a, b); max_res = max(max_res, c); std::cout << max_res << " eh o maior" << std::endl; return 0; } |
617
1 2 3 4 5 6 7 8 9 |
#include <iostream> int main() { int distance = 0, min = 0; std::cin >> distance; min = static_cast<int>(distance/30.0*60); std::cout << min << " minutos" << std::endl; return 0; } |
618
1 2 3 4 5 6 7 8 9 10 |
#include <iostream> #include <cstdio> int main() { long long t = 0, s = 0; std::cin >> t >> s; printf("%.3lf", t*s/12.0); return 0; } |
656
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 |
#include <cstdio> #include <iostream> #include <vector> int main() { double money = 0.0; scanf("%lf", &money); money += 0.00001; int temp = static_cast<int>(money*100); std::vector<int> item1{10000, 5000, 2000, 1000, 500, 200}; int count1 = 0; std::cout << "NOTAS:" << std::endl; for (int i = 0; i < 6; ++i) { count1 = temp / item1[i]; if (count1 > 0) { temp %= item1[i]; } std::cout << count1 << " nota(s) de R$ " << item1[i]/100 << ".00" << std::endl; } std::vector<int> item2{100, 50, 25, 10, 5, 1}; int count2 = 0; std::cout << "MOEDAS:" << std::endl; for (int i = 0; i < 6; ++i) { count2 = static_cast<int>(temp / item2[i]); if (count2 > 0) { temp -= item2[i] * count2; } printf("%d moeda(s) de R$ %.2lf\n", count2, item2[i]/100.0); } return 0; } |
655
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
#include <iostream> int main() { int all_days = 0; int temp = 0; std::cin >> all_days; int years = all_days / 365; temp = all_days % 365; int mons = temp / 30; temp %= 30; std::cout << years << " ano(s)" << std::endl; std::cout << mons << " mes(es)" << std::endl; std::cout << temp << " dia(s)" << std::endl; return 0; } |
本文为原创文章,版权归Aet所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 【LeetCode-April】04/02
- ♥ 【LeetCode-30 天 JavaScript 挑战】07/23
- ♥ 【AcWing 语法基础课 第七八讲】03/03
- ♥ 【Nowcoder-May】05/09
- ♥ 【LeetCode-Mar-链表一】03/24
- ♥ 【LeetCode-Aug】08/10