重读《C prime plus》(三)

重读《C prime plus》(三),第1张

示例程序
#include
int main(void){
       float weight;
       float value;
       printf("Are you worth your weight in platinum?\n");
       printf("Let`s check it out.\n");
       printf("Please enter your weight in pounds:");

       scanf("%f",&weight);
       value = 1700.0 * weight * 14.5833;
       printf("Your weight in platinum  is worth $%.2f.\n",value);
       printf("You are easily worth that! If platinum prices drop,\n");
       printf("eat more to maintain your value.\n");
       
       return 0;
       }
程序中新元素
  • 交互性,即使用了scanf()函数
数据类型关键字 整数类型 有符号
  • char
  • short
  • int
  • long
  • long long
无符号

有符号类型前加上unsigned

浮点数类型 实数
  • float
  • double
  • long double
复数或虚数

后缀加上==_Complex或者_Imaginary==

布尔类型

_bool,C语言中布尔值true用1来表示,false用0来表示。

转义字符
转义序列含义
\a警报
\b退格
\f换页
\n换行
\r回车
\t水平制表符
\v垂直制表符
\反斜杠(\)
单引号
"双引号

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/2889434.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-09-14
下一篇 2022-09-14

发表评论

登录后才能评论

评论列表(0条)

保存