摘要: #include <stdio.h> #include <string.h> struct Person { char name[24]; char character[30]; int age; struct Birthday { int day; char month[10]; int year 阅读全文
posted @ 2020-06-05 22:23 profesor 阅读(185) 评论(0) 推荐(0) 编辑
摘要: JAVA public class BooksTest { public static void main(String[] args) { int i; for (i = 0; i < args.length; i++) { System.out.printf("args[%d] = %s\n", 阅读全文
posted @ 2020-06-05 20:40 profesor 阅读(274) 评论(0) 推荐(0) 编辑
摘要: def person(age, **otherInfo): print(age) print(type(otherInfo)) print(otherInfo) person(age=15, sex='male', height=175, weight=56.7, hair='long') 运行结果 阅读全文
posted @ 2020-06-05 20:15 profesor 阅读(307) 评论(0) 推荐(0) 编辑
摘要: /* 请写成下列宏定义 1.min(a,b) 求a,b的最小值 2.islower(c), 判断c是否为小写字母 3.isleap(year), 判断year是否为闰年 4.circumference(r), 计算半径为r的圆周长 */ #include <stdio.h> #define min( 阅读全文
posted @ 2020-06-05 17:41 profesor 阅读(191) 评论(0) 推荐(0) 编辑