摘要:
#include <bits/stdc++.h> using namespace std; int index=0; int sum[1000]; int jia(string a,int i){ if(a.find("+")<0 || a.length<a.find("+")){ return s 阅读全文
摘要:
#include <iostream> #include <iomanip> using namespace std; int row=16; int col=16; int all[17][17]; bool black=true; bool whilt; int x,y; int a=1; in 阅读全文
摘要:
#include <bits/stdc++.h> using namespace std; int main(){ int a=10; int *p;//声明指针 p=&a;//将指针p指向变量a的内存地址 cout<<a<<endl; cout<<p<<endl;//a的内存地址 cout<<*p 阅读全文