题解 | #牛牛的并联电路#
牛牛的并联电路
https://www.nowcoder.com/practice/6e13936b6fc54f52ac22efd6c8e7fef3
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%f", 1/ (1.0 / a + 1.0 / b)); return 0; }
牛牛的并联电路
https://www.nowcoder.com/practice/6e13936b6fc54f52ac22efd6c8e7fef3
#include <stdio.h> int main() { int a, b; scanf("%d %d", &a, &b); printf("%f", 1/ (1.0 / a + 1.0 / b)); return 0; }
相关推荐