当前位置: 首页 > news >正文

手机网站端域名怎样做解析网站网址查询工具

手机网站端域名怎样做解析,网站网址查询工具,佛山行业网站设计,网站备案系统登陆不上C语言学习【printf函数和scanf函数】 printf()函数和scanf()函数可以让用户与程序交流#xff0c;是输入/输出函数 printf()函数 请求printf()函数打印数据的指令要与待打印数据的类型相匹配。例如#xff0c;打印整数时使用%d#xff0c;打印字符时使用%c。这些符号被称…C语言学习【printf函数和scanf函数】 printf()函数和scanf()函数可以让用户与程序交流是输入/输出函数 printf()函数 请求printf()函数打印数据的指令要与待打印数据的类型相匹配。例如打印整数时使用%d打印字符时使用%c。这些符号被称为转换说明(conversion specification)它们指定了如何把数据转换成可显示的形式 如下图所属我i欸转换说明及其打印的输出结果 /* 使用转换说明 */ #include stdio.h #define PI 3.1415926int main(void) {int number 7;float pies 12.75;int cost 7800;printf(The %d contestants ate %f berry pies.\n, number, pies);printf(The value of pi is %f.\n, PI);printf(Farewell! thou art too dear for my possessing, \n);printf(%c%d\n, $, 2 * cost); }程序运行结果 The 7 contestants ate 12.750000 berry pies. The value of pi is 3.141593. Farewell! thou art too dear for my possessing, $15600printf()函数格式为 printf(格式字符串, 待打印项 1, 待打印项 2,...);printf()输出百分号使用两个%即可 /* printf 输出 % */ #include stdio.hint main(void) {int radio 12;printf(%d%%, radio); }程序运行结果 12%printf()的转换说明修饰符 下图所示为printf()的修饰符 printf()中的标记 使用修饰符和标记的示例程序(字段宽度打印输出整数时的效果) /* 字段宽度 */ #include stdio.h#define PAGES 959int main(void) {printf(*%d*\n, PAGES);printf(*%2d*\n, PAGES);printf(*%10d*\n, PAGES);printf(*%-10d*\n, PAGES);}程序运行结果 *959* *959* * 959* *959 *第一个转换说明%d不带任何修饰符其对应输出结果与带整数字段宽度的转换说明的输出结果相同 第二个转换说明是%2d其对应的输出结果应该该是2字段度。因为待打印的整数有3位数字所以字段宽度自动扩大以符合整数的长度 第3个转换说明是%10d其对应的输出结果有10个空格宽度实际上在两个星号之间有7个空格和3位数字并且数字位于字段的右侧; 最后一个转换说明是%-10d其对应的输出结果同样是10个空格宽度-标记说明打印的数字位于字段的左侧. 浮点型格式效果 /* 一些浮点型修饰符的组合 *//* 一些浮点型修饰符的组合 */#include stdio.hint main(void) {const double RENT 3852.99; /* const 常量 */printf(*%f*\n, RENT); /* 字段宽度和小数点文书均为系统默认 小数点后打印6位数字 */printf(*%e*\n, RENT); /* %e 编译器在小数点左侧打印一个数字 小数点右侧打印6个数字 */printf(*%4.2f*\n, RENT); /* */printf(*%3.1f*\n, RENT);printf(*%10.3f*\n, RENT);printf(*%10.3E*\n, RENT);printf(*%4.2f*\n, RENT); /* 代数标记 */printf(*%010.2f*\n, RENT); /* 补齐方式 */ }程序运行结果 *3852.990000* *3.852990e003* *3852.99* *3853.0* * 3852.990* *3.853E003* *3852.99* *0003852.99*其他组合 /* 演示一些格式标记 */#include stdio.hint main(void) {printf(%x %X %#x\n, 31, 31, 31);printf(**%d**% d**% d**\n, 42, 42, -42);printf(**%5d**%5.3d**%05d**%05.3d**\n, 6, 6, 6, 6);}程序运行结果 1f 1F 0x1f **42** 42**-42** ** 6** 006**00006** 006**第1行输出中1f是十六进制数等于十进制数31第1行 printf()语句中根据%x打印出1f%F打印出1F%#x打印出0x1f 第 2 行输出演示了如何在转换说明中用空格在输出的正值前面生成前导空格负值前面不产生前导空格。这样的输出结果比较美观因为打印出来的正值和负值在相同字段宽度下的有效数字位数相同 第 3 行输出演示了如何在整型格式中使用精度%5.3d生成足够的前导 0 以满足最小位数的要求本例是 3。然而使用 0 标记会使得编译器用前导 0 填充满整个字段宽度。最后如果 0 标记和精度一起出现0 标记会被忽略。 字符串格式的示例 /* 字符串格式 */#include stdio.h#define BLURB Authentic imitation!int main(void) {printf([%2s]\n, BLURB);printf([%24s]\n, BLURB);printf([%24.5s]\n, BLURB);printf([%-24.5s]\n, BLURB); }程序运行结果 [Authentic imitation!] [ Authentic imitation!] [ Authe] [Authe ]-标记使得文本左对齐输出. 转换(conversion)说明的意义 76在计算机内部的存储格式为二进制数0100 1100 %d转换说明将其转换成字符7和6并显示为76%x转换说明把相同的值0100 1100转化成十六进制计数法4c%c转换说明把0100 1100转换成字符L 转换说明应该与待答应值得类型相匹配 以下是一些不匹配的整型转换示例 /* 一些不匹配的整型转换 */ #include stdio.h#define PAGES 336 #define WORDS 65618int main(void) {short num PAGES;short mnum -PAGES;printf(num as short and unsigned short: %hd %hu\n, num, num);printf(-num as short and unsigned short: %hd %hu\n, mnum, mnum);printf(num as int and char: %d %c\n, num, num);printf(WORDS as int, short, and char: %d %hd %c\n, WORDS, WORDS, WORDS);}程序运行结果 num as short and unsigned short: 336 336 -num as short and unsigned short: -336 65200 num as int and char: 336 P WORDS as int, short, and char: 65618 82 R%u表示无符号 short int的大小是2字节系统采用二进制补码来表示有符号整数数字0~32767代表它们本身而32768~65535则表示负数其中65535表示-1依此类推. 当 printf()使用%c 打印 336 时它只会查看储存 336 的 2 字节中的后 1 字节 用%hd 转换说明打印时printf()只使用最后 2 个字节 混淆整型和浮点型 /* 不匹配的浮点型转换 */#include stdio.hint main(void) {float n1 3.0;double n2 3.0;long n3 2000000000;long n4 1234567890;printf(%.1e %.1e %.1e %.1e\n, n1, n2, n3, n4);printf(%ld %ld\n, n3, n4);printf(%ld %ld %ld %ld\n, n1, n2, n3, n4);}程序运行结果 3.0e000 3.0e000 9.9e-315 6.1e-315 2000000000 1234567890 0 0 2000000000 1234567890第1 行输出显示%e转换说明没有把整数转换成浮点数 float 类型的值作为 printf()参数时会被转换成 double 类型。 在本系统中float 是 4 字节但是为了 printf()能正确地显示该值n1 被扩成 8 字节 参数传递 栈(stack) printf(%ld %ld %ld %ld\n, n1, n2, n3, n4);n1 被储存在栈中占 8 字节float 类型被转换成 double 类型。同样n2 也在栈中占 8 字节而 n3 和 n4 在栈中分别占 4 字节; %ld 转换说明表明 printf()应该读取 4 字节 printf()函数的返回值 printf()函数也有一个返回值它返回打印字符的个数。如果有输出错误printf()则返回一个负值 /* printf()的返回值 */#include stdio.hint main(void) {int bph2o 212;int rv;rv printf(%d F is waters boiling point.\n, bph2o);printf(The printf() function printed %d characrters.\n, rv);return 0; }程序运行结果 212 F is waters boiling point. The printf() function printed 32 characrters.在字符串中可以使用\n 来表示换行字符但是不能通 过按下 Enter或 Return键产生实际的换行符。 打印较长字符串的方法 /* 打印较长字符串 */#include stdio.hint main(void) {printf(Heres one way to print a );printf(long string.\n);printf(Heres another way to print a \long string.\n);printf(Heres the newest way to print a long string.\n); /* ANSI C */return 0; }程序运行结果 Heres one way to print a long string. Heres another way to print a long string. Heres the newest way to print a long string. 示例二 /* 打印较长字符串 */#include stdio.hint main(void) {printf(Hello, young lovers, wherever you are.\n);printf(Hello, young lovers , wherever you are.\n);printf(Hello, young lovers , wherever you are.);}程序运行结果 Hello, young lovers, wherever you are. Hello, young lovers, wherever you are. Hello, young lovers, wherever you are.
http://www.hkea.cn/news/14501728/

相关文章:

  • 网站建设前准备工作自助建站系
  • 怎么建设免费的网站网站联盟三要素
  • ui设计网站成品图片什么是网站什么是网站建设
  • 网站建设的行业新闻小程序可视化开发工具
  • 网站建设波斯文惠安规划局建设局网站
  • 湖北响应式网站设计制作专业做淘宝网站推广
  • 购物网站补货提醒软件怎么做织梦源码怎样做单页网站
  • 站长工具seo综合查询访问沈阳seo顾问
  • 做文具的网站wordpress主题排行榜
  • 手机端怎么网站建设泉州微信网站建设
  • 假山网站如何做扫码推广平台
  • 太原网站建设公司58581717做网站
  • 网站建设的费用入账平台交易网
  • 网站建设氺金手指排名14openshift wordpress 访问
  • 如何加强省市级门户网站的建设多语言企业网站源码
  • 商业网站建设教程怎样建设网站公司
  • 网站开发设置网页端口室内装修设计学校哪里好
  • 给窗帘做网站北京网站制作长沙
  • 怎么用网站做word文件检察院门户网站建设工作成效
  • 网站js文件夹pc网站转换成app
  • 好看的网站首页设计手机网站和电脑网站
  • 高端网站设计欣赏郴州网站维护
  • 广州市网站集约化建设工作要求正则表达式匹配网站
  • wordpress插件王seo研究中心论坛
  • .net 快速网站开发营销型网站建设公司
  • 做搜狗手机网站优化php网站开发技术题目
  • 无锡网站推广排名互联网网站开发用哪个语言开发
  • 网站开发需要掌握技术nodejs做的网站
  • 网站服务器建立美橙互联送的网站源代码
  • 宿迁网站网站建设qq浏览器小程序入口