第十二周项目一——阅读程序(2.1 2.2)

来源:互联网 发布:广州数控980tdc编程 编辑:程序博客网 时间:2024/05/21 08:03
/* *Copyright  (c)  2014,烟台大学计算机学院 *All rights reserved. *文件名称: test.cpp *作        者:陈丹 *完成日期:2014年11月17日 *版本号:v1.0 * *问题描述: *输入描述: *程序输出: */#include <iostream>using namespace std;int  a=3, b=5;int max(int a, int b){    int c;    c=a>b? a:b;    return  c;}int main(){    int a=8;    cout<<max(a,b)<<endl;    return 0;}


运行结果:

/* *Copyright  (c)  2014,烟台大学计算机学院 *All rights reserved. *文件名称: test.cpp *作        者:陈丹 *完成日期:2014年11月17日 *版本号:v1.0 * *问题描述: *输入描述: *程序输出: */#include <iostream>using namespace std;void cude();int main(){    extern int x;    x=5;    cude();    cout<<x<<endl;    return 0;}int x=10;void cude(){    x=x*x*x;}


运行结果:

0 0
原创粉丝点击