编写程序,求它在前3秒内下落的垂直距离。设重力加速度为10米/秒2。 输入格式: 本题目没有输入。 输出格式: 按照下列格式输出 height = 垂直距离值 结果保留2位小数。 源代码示例: #include <stdio.h> int main() { double height; printf("height = %.2lf",0.5*10*3*3); return 0; }...
按照幂的递增顺序输出n+1行,每行格式为“pow(3,i) = 3的i次幂的值”。题目保证输出数据不超过长整型整数的范围。 输入样例: 3 输出样例: pow(3,0) = 1 pow(3,1) = 3 pow(3,2) = 9 pow(3,3) = 27 代码: 代码语言:javascript 复制 #include<stdio.h>#include<math.h>intmain(){int n;s...
习题8-3 数组循环右移 本题要求实现一个对数组进行循环右移的简单函数:一个数组a中存有n(>0)个整数,将每个整数循环向右移m(≥0)个位置,即将a中的数据由(a0 a1⋯an−1)变换为( an−m⋯an−1a0a1⋯an−m−1 )(最后m个数循环移最前面的m个位置)。 函数接口...
更正:将第8行改为Average=1.0*Sum/4;pta应该识别不了double(sum)这种格式的输入。 **5.习题2-5 求平方根序列前N项和 ** 在这道题目中,我把定义i放在了for循环类,即i首次出现的位置,给予i定义整形变量,这样是不是减少一个开辟空间,还是没有,哈哈。 **6.练习3-3 统计学生平均成绩与及格人数 ** #incl...
浙大版《 C语言程序设计实验与习题指导(第 3版)》题目集 —— C语 言练习 练习 1-1 计算摄氏温度 (5分 ) 本题要求编写程序,计算华氏温度100°F对应的摄氏温度。计算公式:2,式中:C表示摄氏温度,F表示华氏温度,输出数据要求为整型。 输入格式: 本题目没有输入。 输出格式: 按照下列格式输出 f...
摘要:本题要求编写函数,将输入字符串的前3个字符移到最后。 函数接口定义: void Shift( char s[] ); 其中char s[]是用户传入的字符串,题目保证其长度不小于3;函数Shift须将按照要求变换后的字符串仍然存在s[]里。 裁判测试程序样例: #include <stdio.h> 阅读全文 posted @ 2020-07-02 15:04 行行行...
3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 输入样例: 5 1. 输出样例: 1 2 2 3 3 3 4 4 4 4 5 5 5 5 5 1. 2. 3. 4. 5. 代码如下: void pyramid(int n) { int i, j, k; for (i = 1; i <= n; i++) //* 打印n行 ...
Number of digit 2 in -21252: 3 1. 参考代码: int CountDigit(int number, int digit) { int count = 0; if (number < 0)//判断输入的数是否为负,若为负数转换为正数 number = -number; while (number) { if (number % 10 == digit) ...
3 2 输出样例: 3 + 2 = 5 3 - 2 = 1 3 * 2 = 6 3 / 2 = 1 #include<stdio.h> int main() { int A,B; scanf("%d %d",&A,&B); printf("%d + %d = %d\n",A,B,A+B); printf("%d - %d = %d\n",A,B,A-B); printf("%d * %d = %d\n",A,B,A*B); printf("...
PTA 浙大版《C语言程序设计实验与习题指导(第3版)》题目集(参考答案).pdf,编程题 实验 1-1 Hello World! (5 分) #include stdio.h int main() { return 0; } 实验 1-2 Welcome to You! (5 分) #includestdio.h int main() { return 0; } 实验 1-3 Programming in C is fun!