码迷,mamicode.com
首页 > 编程语言 > 详细

C++入门经典-例2.2-使用格式输出函数printf

时间:2017-09-08 16:22:25      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:符号   hid   char   printf   print   pen   style   view   com   

1:使用printf函数对不同类型变量进行输出,%符号,代表输出类型,\n代表换行,代码如下:

技术分享
// 2.2.cpp : 定义控制台应用程序的入口点。
//

#include "stdafx.h"

 
 int main()
{
    int iInt=10;                                    /*定义整型变量*/
    char cChar=A;                                /*定义字符型变量*/
    float fFloat=12.34f;                            /*定义单精度浮点型*/

    printf("the int is: %d\n",iInt);                    /*使用printf函数输出整型*/
    printf("the char is: %c\n",cChar);                /*输出字符型*/
    printf("the float is: %f\n",fFloat);                    /*输出浮点型*/
    printf("the stirng is: %s\n","I LOVE YOU");            /*输出字符串*/
    return 0;
}
View Code

运行结果如下:

技术分享

 

C++入门经典-例2.2-使用格式输出函数printf

标签:符号   hid   char   printf   print   pen   style   view   com   

原文地址:http://www.cnblogs.com/lovemi93/p/7494817.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!