求一段简单的c++代码

程序启动后,先等待三秒,然后输出HelloWorld

C++简单代码

#include<iostream>
#include <Windows.h>
using namespace std;
int main()
{
//下一行代表等待3000毫秒,即3秒
Sleep(3000);
//endl;代表机器换行,不然运行会出现一些字在同一行
cout<<"HelloWorld!"<<endl;
return 1;
}

//后面的机器直接忽略,对代码没有影响

温馨提示:内容为网友见解,仅供参考
第1个回答  推荐于2017-09-07
#include<iostream>
#include <Windows.h>
using namespace std;
int main()
{
Sleep(3000);
cout<<"HelloWorld!"<<endl;
return 1;
}
已经测试过了。
sleep函数实现等待,括号中是毫秒数,1000毫秒等于1秒。
必须包含头文件windows.h。本回答被提问者采纳
第2个回答  2011-07-22
#include <iostream>

using namespace std;
class Jiaju
{
public:
Jiaju()
{
char *Clolor = "red";
int weight = 5;
}
protected:
char *Clolor;
int weight ;
};

//桌子类
class Table:public Jiaju
{
public:
Table()
{
legs = 4;
}
void print()
{
cout<<"桌腿数="<<legs<<endl;
}
protected:
int legs;
};

void main()
{
Table need;
need.print();
}
第3个回答  2011-07-22
#include <iostream>
using namespace std;
int main()
{int a,b,c;
cout<<"输入两个整数:";
cin>>a>>b;
c=a+b;
cout<<"c=“<<c<<endl;
}
第4个回答  2011-07-22
#include "stdio.h"
#include "windows.h"
main()
{
Sleep(3000);
printf("HelloWorld\n");
}

求以下c++代码(大一新生,课没上,实验要做)
n = ceil(log(m \/ (m - v * r)) \/ log(1 + r)); printf("%d个月可还清贷款\\n", n); return 0;} 任务5:大小写转换 include <stdio.h>int main() { char c; printf("输入一个半角字符:"); scanf("%c", &c); if (c >= 'A' && c <= 'Z') ...

c++入门代码是什么?
c++入门代码如下:include <stdio.h> int main(void){ printf("Hello, world!");return 0;} 代码解析:其中第一行的#include <stdio.h>,这行代码是编译预处理指令,用来提供输入输出函数的声明和宏的定义,全局量的定义这些信息。stdio.h是系统提供的一个文件名,stdio是为standard input & outpu...

C++简单输出代码123就行
代码如下:include<iostream> \/\/C++的标准头文件,任何符合标准的C++开发环境都有这个头文件。using namespace std; \/\/使用C++的标准命名空间\/\/上面两句新手暂时只要记住就好,后面会明白其具体含义int main() \/\/主函数,每个程序运行都是从主函数开始,然后调用主函数中用到的其他函数。{ ...

求一C++小游戏源代码 简单点的?!!谢谢
printf("Please choose the gamespeed:\\n");printf("1-Fast 2-Normal 3-Slow\\n");printf("\\nPlease Press The numbers..\\n");do {ch=getch();} while(ch!='1'&&ch!='2'&&ch!='3');clrscr();return(ch);} \/*主函数*\/ void main(void){ int ch;ch=Menu();Init();DrawK()...

c++题目,给个代码,谢谢
C++具体代码如下:include<iostream> include<algorithm> using namespace std;int main() { int n;cin >> n;int a[n];for (int i = 0; i < n; ++i)cin >> a[i];sort(a, a + n, greater<int>()); \/\/ 降序排列 int ans = -1; \/\/ 满足条件的和,不存在则输出-1 for (...

c++入门代码是什么?
extern a,b,c;putchar(a);putchar(b);putchar(c);putchar('!*n');} a'hell';b'o,w';c'orld';输出“Hello world”这行字符串的计算机程序,“Hello World”的中文意思是“你好,世界。”。这个例程在 Brian Kernighan 和 Dennis M. Ritchie合著的The C Programme Language使用而广泛流行...

C\/ C++的万能开头代码?
\/\/ 如果需要使用underscore库,可以添加以下代码:_ = _.noConflict(true);在C++中,可以使用以下代码来引入常用的头文件和库:cpp#include <iostream> include <fstream> include <string> include <vector> include <algorithm> include <cmath> include <cstdlib> include <ctime> include <cstring>...

如何使用DEV C++软件编写一个简单的程序?
1、首先打开我们的DEV C++软件,点击“新建源代码”。在编辑页面输入以下源代码:include <stdio.h> int main( ){ int *p;int i,a[5];float sum=0,average;p=a;printf("please input 5 numbers:");for(i=0;i<5;i++)scanf("%d",&a[i]);for(p=a;p<(a+5);p++)sum=sum+*p;a...

一个c++简单程序的源代码
include <iostream.h> int main(){ int a;cin>>a;cout<

c语言 c++的一个问题 求一个简单的初学者能看懂的代码
\\n奇数:\\n"<<endl;for (int l=0;l<20;l++){ if (a[l]%2!=0)cout<<setw(4)<<a[l];} cout<<endl;system("pause");} 以上代码在VC++中测试成功。代码可以分为二段。第一段,用随机生成的数据填充a[20]。第二段,用数组a的中每个数测试除2的余,然后分别打印出偶数,奇数。

相似回答