• 圆的面积和周长


    #include<stdio.h>

    //宏定义常量,可直接定义常量

    #define pi 3.14159

    圆的面积s=pi*r*r;圆的周长l=2*pi*r;圆的半径3

    int main(void)

    {

    //auto:定义局部变量(在函数内部定义的变量),可在数据类型前加修饰,可加可不加

    //float:浮点型,并用%f打印

      auto float r=3.f;

      float s =pi*r*r;

      float l = 2*pi*r;

    //%f:占位符表示输出一个浮点型float;%f:默认保留六位小数;%.2f:保留两位小数,并四舍五入

      printf("圆的面积:%.2f ",s);

      printf("圆的周长:%2f ",l); 

      return 0; 

    //常量名、变量名
    //标识符
    //1.不能使用系统关键字
    //2.不允许数字开头
    //3.允许使用字母、数字、下划线
    //4.标识符区分大小写
    //5.见名知义、简明扼要

    }

  • 相关阅读:
    连载日记
    自我介绍
    test0710 二分专题
    test0709 搜索专题
    test0705
    test0704
    [题解] [HNOI2015]落忆枫音
    test0606
    test0523
    备份
  • 原文地址:https://www.cnblogs.com/wanghong19991213/p/13404095.html
Copyright © 2020-2023  润新知