#include <stdio.h>
#include <string.h>
#define DENSITY 62.4
int main()
{
float weight,volume;
int size,letters;
char name[40];//name是一个可容纳40个字符的数组
printf("Hi,What's your first name?\n");
scanf("%s",name);
printf("%s,What's your weight in pounds?\n",name);
scanf("%f",&weight);
size=sizeof(name);
letters=strlen(name);
volume=weight/DENSITY;
printf("well,%s,your volume is %2.2f cubic feet.\n",name,weight);
printf("Also your first name has %d letters.\n",letters);
printf("and we have %d bytes to store it.\n",size);
return 0;
}
①用数组存储字符串,在以上程序中用户输入的名被储存在数组中,该数组占用内存中40个连续的字节,每个字节储存一个字符值
②用c预处理器把字符常量DENSITY定义为62.4
③strlen获取字符串长度
字符串
一个或多个字符的序列,双引号括起来既是字符串
char类型的数组和NULL字符
1,c语言没有专门用于存储字符串的变量类型,字符串都被存储在char类型的数组中。
字符串中的字符被存储在相邻的存储单元,每个单元存储一个字符
2,\0表示空字符,c语言用它表示字符串的结束
c的字符串一定以空字符结尾,这意味着数组的容量必须至少比待存储的字符数多1
3,数组是同类型数据元素的有序数列
使用字符串
#include <stdio.h>
#define PRAISE "You are an extraordinary being "
int main (void)
{
char name[40];
printf("What's your name?");
scanf("%s",name);
printf("Hello,%s.%s\n",name,PRAISE);
return 0;
}
1,scanf()在读取到空格、制表符、换行符时不再读入
根据%s的转换说明,scanf()只会读取一个单词 fgets()用于读取一般字符串
2,字符串和字符的区别
‘x'是基本类型(char),“x"是派生类型(char 数组)
“x"实际上由两个字符组成:'x'和空字符\0
strlen()函数
sizeof以字节为单位给出对象的大小 strlen()函数给出字符串中的字符长度
#include <stdio.h>
#include<string.h>
#define PRAISE "You are an extraordinary being "
int main (void)
{
char name[40];
printf("What's your name?");
scanf("%s",name);
printf("Hello,%s.%s\n",name,PRAISE);
printf("Your name of %zd letters occupies %zd memory cells.\n",strlen(name),sizeof name);
printf("The phrase of praise has %zd letters ",strlen(name));
printf("and occupies %zd memory cells.\n",sizeof PRAISE);
return 0;
}
**两种方法处理很长的printf()语句,如上所示
①将语句分为两行,在参数之间断为两行,但不要在双引号的字符串中断为两行
②使用两个printf()语句,在第二行中添加换行符(\n)
name: strlen()得出的结果是11,name数组的第12个单元储存空字符,strlen()并未计入。
sizeof则把看不见的空字符也计算其中
PRAISE:用strlen()得出的也是字符串中的字符数(包含空格和标点符号)
sizeof把看不见的空字符\0包含其中,用于没有明确告知计算机字符串的预留空间,所以它必须计算双引号内的字符数
1,strlen()统计字符串中的字符数(包含空格和标点符号),但不包含空字符
sizeof包含看不见的空字符
2,sizeof何时使用()取决于运算对象是类型还是特定量,对于类型应写成sizeof(char);对于特定量,可写成sizeof name
常量和C预处理器
1①编译程序时,程序中所有的TAXRATE都会被替换成0.015,这个过程被称为编译时替换,通常这样定义的常量也叫做明示常量。
**末尾不用加分号,因为这是一种由预处理器处理的替换机制
**大写常量可以提高程序的可读性
**一个不常用的命名约定:在名称前带c_或k_前缀来表示常量,但首字母不能是数字
#include <stdio.h>
#define PI 3.14159
int main(void)
{
float area,circum,radius;
printf("What is the radius of your pizza?\n");
scanf("%f",&radius);
area=PI*radius*radius;
circum=2.0*radius*radius;
printf("Your basic pizza parameters are as fllows:\n");
printf("circumference=%1.2f,area=%1.2f\n",circum,area);
return 0;
}
***#define指令可定义字符和字符串常量,前者使用单引号,后者使用双引号
***错误格式:#define TOES =20 如果这样,替换TOES的是=20,而不是20
当digits= fingers+TOES;就会被替换为digits=fingers+=20;
明示常量
limits.h
float.h
#include <stdio.h>
#include<limits.h>
#include<float.h>
int main(void)
{
printf("Some number limits for this system:\n");
printf("Biggest int:%d \n",INT_MAX);
printf("Smallest long long:%11d\n",LLONG_MIN);
printf("One byte=%d bits on this system.\n",CHAR_BIT);
printf("largest double:%e\n",DBL_MAX);
printf("Smallest normal float:%e\n ",FLT_MAX);
printf("float precision=%d digits\n",FLT_DIG);
printf("float epsilon=%e\n",FLT_EPSILON);
return 0;
}
printf()和scanf()
printf()函数
使用printf函数打印数据的指令要与待打印数据的类型相匹配
使用printf()
a.格式字符串包含两种形式不同的信息
1,实际要打印的字符
2,转换说明
b.注意转换说明要与每个项匹配 如果只打印短语、句子或数据,就不需要使用任何转换说明