首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ >

一个有趣的C/C++输出有关问题

2012-02-20 
一个有趣的C/C++输出问题#include iostream#include stdio.hintmain(){std::cout Hello printf

一个有趣的C/C++输出问题
#include <iostream>
#include <stdio.h>

int   main()
{
    std::cout < < "Hello ";
    printf( "   World! ");
    return   0;
}
运行一下试试!!!

[解决办法]
有时会是 hello world
有时会是 world hello

热点排行