题解列表

筛选

2773计算线段长度

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double xa, ya, xb, yb; scanf("%lf %lf\n%……

数字的处理与判断c语言题解

摘要:解题思路:这题可以分成三个用户自定义函数来实现3个功能注意事项:这是个人想法,没有看题解参考代码:#include <stdio.h> int Num(int sum); void separat……

判断是否为两位数之入门

摘要:解题思路:注意事项:参考代码:while True:    try:        n=int(input())        print("1") if 0.1<= n/100 <1 else pr……

2843: 计算2的N次方(pow解法)

摘要:解题思路:pow要用精度注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){    int i,n[100];    double sum=0;……