摘要:
//pointer to structure #include <stdio.h> struct Person { char name[10]; char character[20]; int age; }; void display(struct Person *t); int main() { 阅读全文
posted @ 2020-06-04 20:05
profesor
阅读(124)评论(0)推荐(0)
摘要:
#include <stdio.h> struct Person { char name[10]; char character[20]; int age; }; void display(struct Person t); int main() { struct Person man = {"je 阅读全文
posted @ 2020-06-04 20:03
profesor
阅读(187)评论(0)推荐(0)
摘要:
#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
阅读(226)评论(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
阅读(116)评论(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
阅读(197)评论(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
阅读(1259)评论(0)推荐(0)