上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 52 下一页
摘要: #include <stdio.h> struct Person { char name[10]; char character[20]; int age; }; int main() { struct Person man[2]; //创建结构变量数组 for (int i = 0; i < 2; 阅读全文
posted @ 2020-06-04 20:02 profesor 阅读(206) 评论(0) 推荐(0) 编辑
摘要: struct Person man1 = {"jerry", "fastidious", {"June", 4, 1965}, 34}; //注意这里的对应顺序,可以用curly brace把Birthday括起来 阅读全文
posted @ 2020-06-04 17:55 profesor 阅读(945) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> struct date { int day; char month[10]; int year; }; void out(struct date); // 1.该行一定要置于struct date定义的下面, 2.struct date是新定义的一种数据结构,类 阅读全文
posted @ 2020-06-04 17:20 profesor 阅读(287) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> struct date { int day; //int month; char month[10]; int year; }; //别丢掉这里的逗号 int main() { struct date today; tod 阅读全文
posted @ 2020-06-04 16:16 profesor 阅读(101) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <string.h> int main() { char str[] = "there are plenty of good reasons "; char str0[] = "for a young person to choose to g 阅读全文
posted @ 2020-06-02 19:17 profesor 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 提醒:在python3中,reduce被移到了functools里面 from functools import reduce str1 = 'the quick brown fox' str2 = ' jumps over ' str3 = 'the lazy dog.' print(reduce 阅读全文
posted @ 2020-06-02 19:09 profesor 阅读(1227) 评论(0) 推荐(0) 编辑
摘要: my_set = set() #create a new set, 虽然set的显示结果为{item, item1...},但是不能用{}来创建集合,应该{}默认是创建dict print(help(my_set)) #查看帮助 my_set.add('jerry') #添加元素用add,而非lis 阅读全文
posted @ 2020-05-31 09:58 profesor 阅读(316) 评论(0) 推荐(0) 编辑
摘要: #!/bin/bash #用while loop计算1到100的和 num=1 sum=0 while [ $num -lt 101 ]; do sum=$(($sum+$num)) num=$(($num+1)) done printf "sum is %s\n" $sum #!/bin/bash 阅读全文
posted @ 2020-05-30 22:37 profesor 阅读(301) 评论(0) 推荐(0) 编辑
摘要: vim打开 vim ~/.vimrc 添加 syntax on #语法高亮set number #显示行数 set hlsearch set tabstop=4 set autoindent 阅读全文
posted @ 2020-05-30 20:48 profesor 阅读(160) 评论(0) 推荐(0) 编辑
摘要: 当需要输入密码时,为了保证密码不在屏幕上显示出来,可以考虑import getpass from getpass import getpass username = input('input your username: ') if username == 'jerry': password = g 阅读全文
posted @ 2020-05-30 15:41 profesor 阅读(317) 评论(0) 推荐(0) 编辑
上一页 1 ··· 41 42 43 44 45 46 47 48 49 ··· 52 下一页