上一页 1 ··· 318 319 320 321 322 323 324 325 326 ··· 345 下一页
摘要: ff 阅读全文
posted @ 2019-03-13 19:04 luoganttcc 阅读(137) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main() { char name[50]; cout name; cout 阅读全文
posted @ 2019-03-13 18:56 luoganttcc 阅读(105) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main () { int var; int ptr; int pptr; var = 3000; // 获取 var 的地址 ptr = &var; // 使用运算符 & 获取 ptr 的地址 pptr = &ptr; // 阅读全文
posted @ 2019-03-13 13:59 luoganttcc 阅读(318) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; const int MAX = 3; int main () { int var[MAX] = {10, 100, 200}; int ptr; // 指针中的数组地址 // 数组名是数组的首地址 ptr = var; for (in 阅读全文
posted @ 2019-03-13 13:57 luoganttcc 阅读(431) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main () { int var = 20; // 实际变量的声明 int ip; // 指针变量的声明 ip = &var; // 在指针变量中存储 var 的地址 cout 阅读全文
posted @ 2019-03-13 13:53 luoganttcc 阅读(109) 评论(0) 推荐(0) 编辑
摘要: ``` include using namespace std; int main () { int var1; char var2[10]; cout 阅读全文
posted @ 2019-03-13 13:50 luoganttcc 阅读(73) 评论(0) 推荐(0) 编辑
摘要: ``` include include using namespace std; int main () { string str1 = "Hello"; string str2 = "World"; string str3; int len ; // 复制 str1 到 str3 str3 = s 阅读全文
posted @ 2019-03-13 13:42 luoganttcc 阅读(105) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std; int main (){ char greeting[6] = {'H', 'e', 'l', 'l', 'o', '\0'}; cout #include using namespa... 阅读全文
posted @ 2019-03-13 13:01 luoganttcc 阅读(70) 评论(0) 推荐(0) 编辑
摘要: #include using namespace std;#include using std:: setw;int main(){ int n[10]; //初始化数组元素 for (int i=0;i<10;i++) { n[... 阅读全文
posted @ 2019-03-13 12:28 luoganttcc 阅读(96) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std;int main(){ int i,j; srand( (unsigned)time(NULL)); /*生成10个随机数*/ for (i=0;i... 阅读全文
posted @ 2019-03-13 11:57 luoganttcc 阅读(85) 评论(0) 推荐(0) 编辑
上一页 1 ··· 318 319 320 321 322 323 324 325 326 ··· 345 下一页