标签:style blog io ar color 使用 sp strong on
1.前导程序
1 #include<stdio.h> 2 #include<string.h> //1提供strlen()的函数原型 3 #define DENSITY 62.4 //2预处理命令 4 int main(void) 5 { 6 float weight,volume; 7 int size,letters; 8 char name[40]; //3定义一个长度为40的数组 9 10 printf("Hi! What‘s your first name?\n"); 11 scanf("%s",name); 12 printf("%s,What‘s your weight in pounds?\n",name); 13 scanf("%f",&weight); 14 size=sizeof name; //4 数组name[]的长度 15 letters=strlen(name);//5 调用函数strlen() 16 volume=weight/DENSITY; 17 printf("well,%s,your volume is %2.2f cubic feet.\n",name,volume);//%2.2f表示字符宽度为2,精确到小数点后两位 18 printf("Also,your first name has %d letters,\n",letters); 19 printf("and we have %d bytes to store it in.\n",size); 20 return 0; 21 }
2.关于字符串
(1)字符串是一个或多个字符的序列。如"I am a student!"。
(2)C语言用空字符来标记一个字符串的结束。数组的单元数必须至少比要存储的字符数多1。
(3)字符串和字符。‘x‘和"x"的区别(后者是一个字符串由‘x‘和‘\0‘组成)。
(4)Sizeof()和strlen()函数。
1 sizeof()和strlen() 2 #include<stdio.h> 3 #include<string.h> 4 #define PRAISE "What a super marvelous name!" 5 int main(void) 6 { 7 char name[40]; 8 printf("What‘s your name?\n"); 9 scanf("%s",name); 10 printf("Hello,%s.%s\n",name,PRAISE); 11 printf("Your name of %d letrers occupies %d memory cells.\n", 12 strlen(name),sizeof(name));//sizeof name 13 printf("The phrase of praise has %d letters", 14 strlen(PRAISE)); 15 printf("and occupies %d memory cells.\n",sizeof(PRAISE));//sizeof PRAISE 16 return 0; 17 }
3.常量和C预处理器
(1)常量如0.015。float taxrate=0.015。把常量0.015赋值给变量taxrate,但程序可能意外的改变它的值。
(2)两种方法const修饰符和#define预处理命令
4.printf()函数
(1)printf():(“控制描述"+变量列表)~(变量使用的是值,无论该值是变量、常量、还是表达式)。
(2)printf()转换说明符:%c--一个字符、%d--有符号十进制整数、%e--浮点数e记数法、%、f--浮点数十进制、%p--指针、%%--打印一个%、%s--字符串...:
(3)printf()标志符:-(左对齐)、+(带符号)、#(...)、0(对所有数字格式,用前导0填充字段宽度)
(4)用printf()打印较长的字符串
a.采用多个printf()函数;
b.在一个printf()中采用(\)和回车键
c.采用字符串连接方法("Hello""world")
1 printf()打印较长字符串 2 #include<stdio.h> 3 int main(void) 4 { 5 printf("Here‘s one way to print a "); 6 printf("long string.\n");//a 7 printf("Here‘s another way to print a \ 8 long string.\n");//b 9 printf("Here‘s the newest way to print a " 10 "long string.\n");//c 11 return 0; 12 }
(5)printf()的函数返回值(返回所打印字符的数目,如果输出有误则返回-1,常用于检查输出错误。向文件中而非屏幕)
1 printf()的返回值 2 #include<stdio.h> 3 int main(void) 4 { 5 int bph2o=212; 6 int rv; 7 8 rv=printf("%d F is water‘s boiling point.\n",bph2o); 9 printf("The printf()function printed %d characters.\n",rv); 10 return 0; 11 }
5.scanf()函数
(1)scanf()会在遇到第一个空白字符空格、制表符、或者换行符处停止读取。~gets()函数可以用来读取一个字符串。
(2)读取变量类型的值加&,把字符串读进一个字符数组不使用&。
(3)scanf("%d,%d",&n,&m)接受输入 1,2 {scanf("%c",&ch)读取在输入中遇到的第一个字符}
6.关于修饰符*
1 使用可变宽度的输出字段 2 #include<stdio.h> 3 int main(void) 4 { 5 unsigned width,precision; 6 int number=256; 7 double weight=242.5; 8 9 printf("What field width?\n"); 10 scanf("%d",&width); 11 printf("The number is :%*d:\n",width,number); 12 printf("Now enter a width and a precision:\n"); 13 scanf("%d%d",&width,&precision); 14 printf("Weight=%*.*f\n",width,precision,weight); 15 return 0; 16 }
标签:style blog io ar color 使用 sp strong on
原文地址:http://www.cnblogs.com/asd5551680/p/4153433.html