不想给老外看不起~~~
求大家帮忙., 知道一道就先告诉一道....
1 , Write a program that reads three nonzero integers and determines and prints whether could be the sides of a right triangle.
required : explanation for each statements.
写一个程序,可以读出3个非零的整数, 然后识别出这3个数字是否可以成为一个直角三角形的3边.
附加需求: 对每个程序语句的解释。
(E文题目Write a program that uses a for statement to sum a sequence of integers.Assume that the first integer read specifies the number of values remaining to be entered . Your program should read only one value per input statement . A typical input sequence might be
5 100 200 300 400 500
where the 5 indicates that the subsequent 5 values are to be summed,.)
2. 写一个程序,用for 语法,可以打出一个 整数序列的和, 假定第一个整数的输入为必须的,你的程序只能认出唯一一个整数的序数值,在每次的输入的时候。
典型例,例如:输入 :5
C出 : 5 100 200 300 400 500
5 指示出,5的序数值为总和 (不明白这个意思, 不知道是不是说输入6 ,就打出6 100 200 300 400 500 600,由此类推)。
附加需求: 对每个程序语句的解释。
3。) 计算下列的无穷级数派(不知道怎么打派符号
)值:
派 = 4 - 4/3 + 4/5 - 4/7 + 4/9 - 4/11 + ..........
打印出一个列表, 指示出的是派的最大近似值在1000 系列后之后。
附加需求: 对每个程序语句的解释。
[此贴子已经被作者于2006-2-26 13:00:36编辑过]