PTA c语言程序实验
滚滚君今天在晒太阳
这个作者很懒,什么都没留下…
展开
-
实验8-2-8 字符串排序 (20 分)
实验8-2-8 字符串排序 (20 分)#include<stdio.h>#include<string.h>/* 输入为由空格分隔的5个非空字符串,每个字符串不包括空格、制表符、换行符等空白字符,长度小于80。 采用二维数组,此处,数组分为了五行,sx[5][80],一行为一个字符串,每次比较则直接比较整行字符串,设置一个空字符串数组,用于进行选择排序交...原创 2019-11-18 15:35:05 · 1370 阅读 · 0 评论 -
实验8-2-1 找最小的字符串 (15 分)
实验8-2-1 找最小的字符串 (15 分)#include<stdio.h>#include<string.h>int main(){ int n,i; char sx[80],smin[80]; scanf("%d",&n); scanf("%s",sx);//输入字符串数组 strcpy(smin,sx);//复...原创 2019-11-18 11:57:09 · 3979 阅读 · 1 评论 -
实验8-1-9 输出学生成绩 (20 分)详细解析
实验8-1-9 输出学生成绩 (20 分)详细解析题目解析方法一:估计一个上限,并将上限作为数组的长度,然后用数组的方式完成编程,但会造成大量的空间的浪费#include<stdio.h>int main(){ int n,i; float sum=0,max,min,avg; int a[10000]; scanf("%d",&n)...原创 2019-11-17 18:45:39 · 2189 阅读 · 1 评论 -
实验2-1-6 计算华氏温度 (5 分)
实验2-1-6 计算华氏温度 (5 分)#include <stdio.h>int main(){ int c,f; c=26; f=9*c/5+32; printf("celsius = 26, fahr = %d",f); return 0;}```原创 2019-11-17 10:06:01 · 709 阅读 · 0 评论 -
实验2-1-5 将x的平方赋值给y (5 分)
实验2-1-5 将x的平方赋值给y (5 分)#include <stdio.h>int main(){ int x=3,y; y = x*x; printf("%d = %d * %d\n%d * %d = %d",y,x,x,x,x,y); return 0;}```原创 2019-11-17 10:04:52 · 903 阅读 · 0 评论 -
实验2-1-4 计算平均分 (5 分)
实验2-1-4 计算平均分 (5 分)#include <stdio.h>int main(){ int math=87,eng=72,comp=93; int average; average=(math+eng+comp)/3.0; printf("math = 87, eng = 72, comp = 93, average = %d",a...原创 2019-11-17 10:03:28 · 478 阅读 · 1 评论 -
实验2-1-3 计算物体自由下落的距离 (5 分)
实验2-1-3 计算物体自由下落的距离 (5 分)#include <stdio.h>int main(){ double t,g,height; t=3; g=10; height = g * t * t / 2; printf("height = %.2f", height); return 0;}...原创 2019-11-17 10:01:43 · 528 阅读 · 0 评论 -
实验2-1-2 温度转换 (5 分)
实验2-1-2 温度转换 (5 分)本题要求编写程序,计算华氏温度150°F对应的摄氏温度。计算公式:C=5×(F−32)/9,式中:C表示摄氏温度,F表示华氏温度,输出数据要求为整型。#include <stdio.h>int main(void){ int fahr, celsius; fahr = 150; celsius = 5*(fahr-32...原创 2019-11-17 09:55:44 · 576 阅读 · 0 评论 -
pta 实验2-1-1 计算摄氏温度 (5 分)
pta 实验2-1-1 计算摄氏温度 (5 分)本题要求编写程序,计算华氏温度100°F对应的摄氏温度。计算公式:C=5×(F−32)/9,式中:C表示摄氏温度,F表示华氏温度,输出数据要求为整型。输入格式:本题目没有输入。输出格式:按照下列格式输出fahr = 100, celsius = 计算所得摄氏温度的整数值#include <stdio.h>int main(v...原创 2019-11-17 09:51:48 · 1618 阅读 · 0 评论