我是靠谱客的博主 小巧戒指,最近开发中收集的这篇文章主要介绍第三章 课后习题,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

3.2 输出一个三位数的逆序数,忽略负号。

 #include<stdio.h>
#include<math.h>
int main()
{
    int x,y;
    scanf("%d",&x);
    x=fabs(x);
    int a0,a1,a2;
    a0=x/100;
    a1=x%100/10;
    a2=x%10;
    y=a2*100+a1*10+a0;
    printf("%d",y);

    return 0;
}

注意:math.h的绝对值函数是fabs(),不是abs()。

 

3.3 年利率为2.25%,已知存款期为n年,存款本金为capital元,输出n年后的本金利息之和deposit。

#include<stdio.h>
#include<math.h>
int main()
{
    double rate,n,capital,deposit;
    //原题是输入的方式,为了简单就u用赋值来做
    rate=0.0225;
    n=2;
    capital=10000;
    deposit=capital*pow(1+rate,n);
    printf("%lf",deposit);
    return 0;
}

 

3.4 输出一元二次方程的两个解。

#include<math.h>
#include<stdio.h>
int main()
{
    double a,b,c,x1,x2;
    printf("Please enter a,b,c:n");
    scanf("%lf,%lf,%lf",&a,&b,&c);
    double temp;
    temp=sqrt(b*b-4*a*c);
    x1=(-b+temp)/(2.0*a);
    x2=(-b-temp)/(2.0*a);
    printf("%lf %lf",x1,x2);
    return 0;
}

注意:开方是sqrt()

转载于:https://www.cnblogs.com/SlowIsFast/p/10393292.html

最后

以上就是小巧戒指为你收集整理的第三章 课后习题的全部内容,希望文章能够帮你解决第三章 课后习题所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(85)

评论列表共有 0 条评论

立即
投稿
返回
顶部