题解 1021: [编程入门]迭代法求平方根

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

Java 公 式

摘要:public static void main(String[] args) {    Scanner sc=new Scanner(System.in);    double a = sc.ne……

迭代法求平方根

摘要:解题思路:使用do while循环来实现注意事项:参考代码:#include<stdio.h>#include<math.h>                     int main(){    i……

迭代法求平方根

摘要:解题思路:注意事项:参考代码:#include <stdio.h>#include <math.h>int main(){ float a; scanf("%f",&a); float b; b=sq……