1021: [编程入门]迭代法求平方根 摘要:import java.io.*; public class Main { public static BufferedReader in = new BufferedReader(n…… 题解列表 2022年05月11日 0 点赞 0 评论 124 浏览 评分:0.0
C语言程序设计教程(第三版)课后习题6.11 (C语言代码) 摘要:解题思路:注意事项:参考代码: #include<stdio.h> #include<math.h> int main() { float x0=1.0,x1,a; scanf("%f",&a)…… 题解列表 2018年09月26日 0 点赞 0 评论 417 浏览 评分:0.0
[编程入门]迭代法求平方根-题解(C语言代码) 摘要: #include "stdio.h" #include "math.h" int main() { int a; double x1,x=1; scanf("%d",&…… 题解列表 2020年02月23日 0 点赞 0 评论 250 浏览 评分:0.0
编写题解 1021: [编程入门]迭代法求平方根 摘要:参考代码:x=int(input()) lis=[x] for i in range(1,20): c=lis[i-1]+x/lis[i-1] lis.append(c/2) …… 题解列表 2023年03月30日 0 点赞 0 评论 111 浏览 评分:0.0
迭代法求平方根 自定义函数 摘要:解题思路:注意事项:参考代码:#include<stdio.h>double a[100];double h(double a[],double n){ int i; a[0]=n/2.0…… 题解列表 2024年12月08日 1 点赞 0 评论 345 浏览 评分:0.0
do while循环的迭代法 摘要:解题思路:注意事项:参考代码:#define _CRT_SECURE_NO_DEPRECATE#pragma warning(disable:4996)#include<stdio.h>#includ…… 题解列表 2021年08月29日 0 点赞 0 评论 197 浏览 评分:0.0
我美吗! 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <math.h> int main() { int a; double x,x1; scanf(…… 题解列表 2017年12月11日 0 点赞 0 评论 724 浏览 评分:0.0
列表是无敌的 摘要:解题思路:注意事项:参考代码:a = int(input())b = []b.append(a)while True: c = (b[-1]+a/b[-1])/2 b.append(c) …… 题解列表 2021年11月29日 0 点赞 0 评论 226 浏览 评分:0.0
[编程入门]迭代法求平方根-题解(C语言代码) 摘要:解题思路:迭代法求平方根注意事项:参考代码:#include<stdio.h>#include<math.h>int main(){ double x1,x2; double a; …… 题解列表 2020年11月15日 0 点赞 0 评论 206 浏览 评分:0.0
[编程入门]迭代法求平方根-题解(Python代码) 摘要:##### 本题我是做的看到没python解答,参考他们c语言写的重新用python写的,大家都是新手互相学习OWO x=int(input()) x1=x/2 x2…… 题解列表 2020年01月27日 0 点赞 0 评论 613 浏览 评分:0.0