摘要: 简单计算器程序示例: 1 # include <stdio.h> //1、头文件 2 3 //2、加法函数 4 int add(int a,int b)//3、函数定义方式 5 { //4、函数体 6 return a+b; //5、函数返回 7 } 8 //减法 9 int move(int a, 阅读全文
posted @ 2016-12-03 13:21 Wenism 阅读(1222) 评论(0) 推荐(0) 编辑