07 2020 档案

摘要:编写一个程序,读人10 个数并且显示互不相同的数(即一个数出现多次,但仅显示一次)。(提示,读人一个数,如果它是一个新数,则将它存储在数组中。如果该数已经在数组中,则忽略它。)输入之后,数组包含的都是不同的数。下面是这个程序的运行示例: Write a program that reads in t 阅读全文
posted @ 2020-07-06 23:57 in2013 阅读(395) 评论(0) 推荐(0)
摘要:编写一个程序,读人个数不确定的考试分数,并且判断有多少个分数是大于或等于平均分,多少个分数是低于平均分的。输人一个负数表示输入的结束。假设最高分为100。 Write a program that reads an unspecified number of scores and determine 阅读全文
posted @ 2020-07-05 00:25 in2013 阅读(365) 评论(0) 推荐(0)
摘要:编写程序,读取在1到100 之间的整数,然后计算每个数出现的次数。假定输入是以0 结束的。 下面是这个程序的一个运行示例: Write a program that reads the integers between 1and 100 and counts the occurrences of e 阅读全文
posted @ 2020-07-03 20:24 in2013 阅读(636) 评论(0) 推荐(0)