第十二周 项目一 2-2

来源:互联网 发布:apk软件修改器 编辑:程序博客网 时间:2024/06/05 05:20
/* * 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;    return 0;}int x=10;void cude(){    x=x*x*x;}

0 0
原创粉丝点击