博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C语言概述
阅读量:6527 次
发布时间:2019-06-24

本文共 3087 字,大约阅读时间需要 10 分钟。

  1. 打印摄氏度
/* 1.1 使用int类型进行计算 */#include 
/* print Fahrenheit-Celsius table for fahr = 0, 20, ...., 300 */main(){ int fahr, celsius; int lower, upper, step; lower = 0; /* lower limit of temperature table */ upper = 300; /* upper limit */ step = 20; /* step size */ fahr = lower; while(fahr <= upper) { celsius = 5 * (fahr - 32) / 9; printf("%d\t%d\n", fahr, celsius); // printf(""%3d %6d\n", fahr, celsius); /* right-justified */ fahr = fahr + step; }}/* 1.2 使用 float 类型进行计算 */#include
main(){ float fahr, celsius; int lower, upper, step; lower = 0; upper = 300; step = 20; fahr = lower; while(fahr <= upper) { celsius = (5.0 / 9.0) * (fahr - 32.0); // fahr 3个字符宽度,无小数部分; celsius 6个字符宽度,额外包括一个小数位 printf("%3.0f %6.1f\n", fahr, celsius); fahr = fahr + step; }}/* 1.3 使用for循环语句 */#include
main(){ int fahr; for(fahr = 0; fahr <= 300; fahr = fahr + 20) { printf("%3d %6.1f\n", fahr, (5.0 / 9.0)*(fahr - 32)); }}/* 1.4 符号常量的应用 因为单纯的数字(如300,20),表达的意义非常模糊,不易于阅读 */#include
// 定义符号常量#define LOWER 0#define UPPER 300#define STEP 20main(){ int fahr; for(fahr = LOWER; fahr <= UPPER; fahr = fahr + STEP) { printf("%3d %6.1f\n", fahr, (5.0 / 9.0) * (fahr - 32)); }}
  1. 数据类型:
    • 基本数据类型:
      • int
      • short
      • long
      • float
      • double
      • char
      • arrays
      • structures
      • unions
      • pointers
    • printf()说明:
      • %d: 十进制整数(decimal)
      • %f: floating point
      • %o: octal(八进制)
      • %x: hexadecimal(十六进制)
      • %c: character
      • %s: string
      • %%: %
  2. 字符串的处理
/* file copying (version 1) */#include 
main(){ int c; while((c = getchar()) != EOF) putchar(c);}/* character counting */#include
main(){ long nc; for(nc = 0; getchar() != EOF; ++nc) ; printf("%.0f\n", nc);}/* line counting */#include
main(){ int c, nl; nl = 0; while((c = getchar()) != EOF) if (c == '\n') ++nl; printf("%d\n", nl);}/* 1-9: Write a program to copy its input to its output, replacing each string of one or more blanks by a single blank */ /* version 1*/ #include
#define NONBLANK '-' int main(void) { int c, lastc; lastc = NONBLANK; while((c = getchar()) != EOF) { if(c == ' ') { if(lastc != ' ') { putchar(c); } } else { putchar(c); } lastc = c; } return 0; }/* a bare-bones version of the UNIX program wc */#include
#define IN 1#define OUT 0main(){ int c, nl, nw, nc, state; state = OUT; nl = nw = nc = 0; while((c = getchar()) != EOF) { ++nc; if (c == '\n') { ++nl; } if (c == ' ' || c == '\n' || c == '\t') { state = OUT; } else if (state == OUT) { state = IN; ++nw; } } printf("%d %d %d\n", nl, nw, nc);}

参考资料:

-

转载于:https://www.cnblogs.com/linkworld/p/10534773.html

你可能感兴趣的文章
Java相对路径读取文件
查看>>
PostgreSQL 商用版本EPAS(阿里云ppas) 自动(postgresql.conf)参数计算与适配功能
查看>>
烂泥:学习ssh之ssh隧道应用
查看>>
Android TableLayout 常用的属性介绍及演示
查看>>
Ajax跨域访问XML数据的另一种方式——使用YQL查询语句
查看>>
[原创]让您的服务器不再有被挂马的烦恼---文件安全卫士
查看>>
Boot loader startup sequence
查看>>
自定义View笔记
查看>>
hdu-2222
查看>>
Asp.net Excel批量导入数据到SqlServer数据库
查看>>
Windows Server 2008 + SQL Server 2005集群
查看>>
CentOS6.5安装完没有网络的解决办法
查看>>
Java中常用的数据结构类
查看>>
51Nod 1364 最大字典序排列(贪心、线段树)
查看>>
多选下拉框 jquery.multiple.select的使用
查看>>
有序数切断重组
查看>>
java静态方法和非静态方法
查看>>
BZOJ4825: [Hnoi2017]单旋(Splay)
查看>>
jquery lazy load
查看>>
Django ORM
查看>>