03 2021 档案

摘要:【练习21】计算自然数的和 0. 题目: 计算自然数的和 1. 分析: 练习使用 for 循环结构。for 循环允许一个执行指定次数的循环控制结构。 2. 程序: #include <stdio.h> int main() { int i, iNum, iSum; printf("输入一个正整数: 阅读全文
posted @ 2021-03-12 11:12 youcans 阅读(1214) 评论(0) 推荐(0) 编辑
摘要:【练习11】计算 int, float, double 和 char 字节大小 0. 题目: 计算 int, float, double 和 char 字节大小 1. 分析: 使用 sizeof 操作符计算int, float, double 和 char四种变量字节大小。 sizeof 是单目操作 阅读全文
posted @ 2021-03-08 20:56 youcans 阅读(901) 评论(0) 推荐(0) 编辑
摘要:【练习1】输出 "Hello, World!" 0. 题目: 输出 "Hello, World!" 1. 分析: 使用 printf() 输出 "Hello, World!"。 2. 程序: #include <stdio.h> int main() { printf("Hello, World!" 阅读全文
posted @ 2021-03-08 17:02 youcans 阅读(4328) 评论(0) 推荐(0) 编辑
摘要:练习91: 题目: 时间函数举例1。 程序: if __name__ == '__main__': import time print (time.ctime(time.time())) print (time.asctime(time.localtime(time.time()))) print 阅读全文
posted @ 2021-03-08 16:59 youcans 阅读(266) 评论(0) 推荐(0) 编辑
摘要:练习81: 题目: 809*??=800*??+9*?? 其中??代表的两位数, 809*??为四位数,8*??的结果为两位数,9*??的结果为3位数。求??代表的两位数,及809*??后的结果。 程序: a = 809 for i in range(10, 100): b = i * a if b 阅读全文
posted @ 2021-03-06 21:10 youcans 阅读(290) 评论(0) 推荐(0) 编辑
摘要:练习71: 题目: 编写input()和output()函数输入,输出5个学生的数据记录。 程序: N = 5 # stu # num : string # name : string # score[4]: list student = [] for i in range(5): student. 阅读全文
posted @ 2021-03-05 12:27 youcans 阅读(226) 评论(0) 推荐(0) 编辑
摘要:练习61: 题目: 打印出杨辉三角形。 程序: if __name__ == '__main__': a = [] for i in range(10): a.append([]) for j in range(10): a[i].append(0) for i in range(10): a[i] 阅读全文
posted @ 2021-03-02 19:41 youcans 阅读(197) 评论(0) 推荐(0) 编辑