代码拉取完成,页面将自动刷新
#include<iostream>
using namespace std;
//int main()
//{
// //auto根据a的类型自动推导b
// int a = 10;
// auto b = a;
// //typeid(b).name():返回b的类型
// cout << typeid(b).name() << endl;
// return 0;
//}
//int main()
//{
// auto a;
// return 0;
//}
//int main()
//{
// int x = 10;
// auto a = &x;
// auto* b = &x;
// auto& c = x;
// c = 30;
// cout << typeid(a).name() << endl;
// cout << typeid(b).name() << endl;
// cout << typeid(c).name() << endl;
// cout << x << endl;
// return 0;
//}
//int main()
//{
// auto a = 1, b = 2;
// auto c = 3, d = 4.0;
// return 0;
//}
//void fun(auto a)
//{}
//int main()
//{
// fun(10);
// return 0;
//}
//int main()
//{
// int a[] = { 1,2,3,4,5,6,7,8,9,10 };
// auto a[] = { 1,2,3,4,5,6,7,8,9,10 };
// return 0;
//}
//int main()
//{
// int a[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// int i = 0;
// int sz = sizeof(a) / sizeof(a[0]);
// for (i = 0; i < sz; i++)
// {
// cout << a[i] << " ";
// }
// return 0;
//}
//int main()
//{
// int a[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// //依次取a数组中的值赋给e,然后输出
// for (auto e : a)
// {
// cout << e << " ";
// }
// cout << endl;
// //改变数组中的值:使用引用
// for (auto& e : a)
// {
// e *= 2;
// cout << e << " ";
// }
//}
//void fun(int* a)
//{
// for (auto e : a)
// {
// cout << e << " ";
// }
//}
//int main()
//{
// int a[] = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 };
// fun(a);
// return 0;
//}
//int main()
//{
// int* p = NULL;
// return 0;
//}
//void f(int)
//{
// cout << "f(int)" << endl;
//}
//void f(int*)
//{
// cout << "f(int*)" << endl;
//}
//int main()
//{
// f(0);
// f(nullptr);
// return 0;
//}
#include"test.9_21.h"
//int main()
//{
// int a = 10;
// int b = 20;
// int ret = Add(a, b);
// cout << ret << endl;
// return 0;
//}
//
//class stack
//{
//public:
// //成员变量
// int* a;
// int size;
// int capacity;
// //成员函数
//private:
// void Init()
// {}
// void push()
// {}
//};
//int main()
//{
// stack st;
// //public:可以访问
// st.size = 0;
// //private:不能访问
// st.Init();
// st.push();
// return 0;
//}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。