摘要:
C++数字及计算 C++定义数字 #include <iostream> using namespace std; int main(){ //数字定义 short s; int i; long l; float f; double d; //数字赋值 s = 10; i = 1000; l = 1 阅读全文
摘要:
C++函数定义、声明及调用 以计算两个数最大值为例,说明C++函数定义、声明及调用 #include <iostream> using namespace std; int max(int num1 , int num2);//函数声明 int main(){ int a = 100;//局部变量声 阅读全文