输入输出问题

来源:互联网 发布:08cms汽车网7.0破解版 编辑:程序博客网 时间:2024/05/20 06:22

// fs.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"

int main(int argc, char* argv[])
{
 printf("%f/n",5);
 printf("%d/n",5.0);

 return 0;
}

输出结果

 

原创粉丝点击