求两道简单的C语言程序改错题(急!)
文件中“/*****N*****/”的下一行中有错误,请改正(注意:不得加行、减行、加句、减句,否则后果自负)。1.该程序功能:输入n(0<n<=81)以及小于n个字符的...
文件中“/***** N ***** /”的下一行中有错误,请改正(注意:不得加行、减行、加句、减句,否则后果自负)。
1. 该程序功能:输入n(0<n<=81)以及小于n个字符的字符串,将字符串中所有小写字母改为相应的大写字母后,输出该字符串。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void main()
{ int n,i;
/***** 1 *****/
char str;
scanf("%d\n",&n); str=(char*)malloc(n); gets(str);
/***** 2 *****/
for(i=1;i<strlen(str);i++)
if(str[i]>='a'&& str[i]<='z') str[i]=str[i]-('a'-'A');
puts(str);
}
2.该程序功能:运行时输入10个数,然后分别输出其中的最大值、最小值。
#include <stdio.h>
void main()
{ float x,max,min; int i;
/******** 3 *******/
for(i=0;i<=10;i++) {
scanf("%f",&x);
/******* 4 ********/
if(i=1) { max=x;min=x;}
if(x>max) max=x;
if(x<min) min=x;
}
printf("%f,%f\n",max,min);
} 展开
1. 该程序功能:输入n(0<n<=81)以及小于n个字符的字符串,将字符串中所有小写字母改为相应的大写字母后,输出该字符串。
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
void main()
{ int n,i;
/***** 1 *****/
char str;
scanf("%d\n",&n); str=(char*)malloc(n); gets(str);
/***** 2 *****/
for(i=1;i<strlen(str);i++)
if(str[i]>='a'&& str[i]<='z') str[i]=str[i]-('a'-'A');
puts(str);
}
2.该程序功能:运行时输入10个数,然后分别输出其中的最大值、最小值。
#include <stdio.h>
void main()
{ float x,max,min; int i;
/******** 3 *******/
for(i=0;i<=10;i++) {
scanf("%f",&x);
/******* 4 ********/
if(i=1) { max=x;min=x;}
if(x>max) max=x;
if(x<min) min=x;
}
printf("%f,%f\n",max,min);
} 展开
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询