Dev-Cpp+安装及使用教程
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
1.双击应用程序(Dev-Cpp+5.4.0+MinGW+4.7.2+Setup.exe)运行,出现下面界面,点击OK
2.继续点击I Agree
3.点击Next
4.文件安装路径(Destination Folder)根据自己的情况选改,可以不改,然后继续点击Install
5.程序开始安装,大概一分钟出现如下界面,点击【是】
6.0、安装完成直接运行,出现下面界面,往上拉滚动条,出现简体中文
6.1、如下图所示选中简体中文,然后点击Next
7.选中如图所示的【Don’t cache anything】,在点击Next
8.关闭弹出的提示窗口,就ok了
新建源程序
方法一:【文件】->【新建】->【源代码】
方法二:是用快捷键Ctrl+N
新建完成后出现下面界面
9.下面提示的按钮就是运行程序的按钮
PS:运行文件前保存文件尽量放在自己容易找到的地方,比如桌面
测试代码1:
#include<stdio.h>
int main() {
printf ("HelloWorld!!");
return 0;
}
测试代码2:
#include<iostream>
#include<cstdlib>
#include<ctime>
using namespace std;
int main() {
int x, y, z;
srand(time(0));
x = rand() % 1000;
y = rand() % 1000;
cout << x << " + " << y << " = ";
cin >> z;
while (z != 0) {
while (z != x + y) {
cout << " ×错误!请重做\n";
cout << x << " + " << y << " = ";
cin >> z;
}
cout << " √正确!\n" ;
x = rand() % 1000;
y = rand() % 1000;
cout << x << " + " << y << " = ";
cin >> z;
}
}
测试代码3:
求两个数的和(随便输入两个数字,空格隔开,按回车键出来运行结果)
#include<stdio.h>
int main() {
int a, b;
scanf ("%d%d", &a, &b);
printf ("%d + %d = %d",a , b, a + b);
return 0;
}。