摘要:
ff 阅读全文
摘要:
``` include using namespace std; int main() { char name[50]; cout name; cout 阅读全文
摘要:
``` include using namespace std; int main () { int var; int ptr; int pptr; var = 3000; // 获取 var 的地址 ptr = &var; // 使用运算符 & 获取 ptr 的地址 pptr = &ptr; // 阅读全文
摘要:
``` include using namespace std; const int MAX = 3; int main () { int var[MAX] = {10, 100, 200}; int ptr; // 指针中的数组地址 // 数组名是数组的首地址 ptr = var; for (in 阅读全文
摘要:
``` include using namespace std; int main () { int var = 20; // 实际变量的声明 int ip; // 指针变量的声明 ip = &var; // 在指针变量中存储 var 的地址 cout 阅读全文
摘要:
``` include using namespace std; int main () { int var1; char var2[10]; cout 阅读全文
摘要:
``` include include using namespace std; int main () { string str1 = "Hello"; string str2 = "World"; string str3; int len ; // 复制 str1 到 str3 str3 = s 阅读全文
摘要:
#include using namespace std; int main (){ char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'}; cout #include using namespa... 阅读全文
摘要:
#include using namespace std;#include using std:: setw;int main(){ int n[10]; //初始化数组元素 for (int i=0;i<10;i++) { n[... 阅读全文
摘要:
#include #include #include using namespace std;int main(){ int i,j; srand( (unsigned)time(NULL)); /*生成10个随机数*/ for (i=0;i... 阅读全文