摘要:
代码1: #include "stdafx.h" #include "iostream" #include "string" using namespace std; int main() { int a=5; cout<<&a<<endl; a=6; cout<<&a<<endl; int *p= 阅读全文
摘要:
#include "stdafx.h" #include "cstdio" #include "iostream" using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; int m=a; if(m>b) m=b; if(m>c) 阅读全文
摘要:
#include "stdafx.h" #include "cstdio" #include "iostream" using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; int m=a; if(m>b) m=b; if(m>c) 阅读全文