[c语言程序编写插入]C输出那个❤太麻烦了,输出*吧 #include int main(){ char p[5000]; int i; scanf("%s",p); for(i=0;p[i+1]!=0;i++){ if(p[i]printf("*%c%c",p[i],p[i+1]); i++;} else printf("*%...+阅读
展开全部
#include
#include
//完全按你要求做,不过其实输入后不必再从文件读入。
float average(float array[],int n);
void main()
{
FILE *fp;
float array[100];
int n; //输入数的个数
float ave;//平均值
int i;
//输入数据
printf("请输入要输入数的个数!");
scanf("%d",&n);
for (i = 0; i < n; i++)
{
scanf("%f",&array[i]);
}
//写入文件
if((fp=fopen("abc.txt","w"))==NULL)
{
printf("abc.txt cannot open!\n");
exit(0);
}
for (i = 0; i < n; i++)
{
fprintf(fp,"%10f",array[i]);
}
fclose(fp);
//从文件读出数据,其余多此一举
if ((fp=fopen("abc.txt","r"))==NULL)
{
printf("abc.txt cannot open!\n");
exit(0);
}
for (i = 0; i < n; i++)
{
fscanf(fp,"%f",&array[i]);
}
fclose(fp);
ave=average(array,n);//求出平均值
printf("平均数为%f\n",ave);
//将大于平均值的数写入文件overave.txt
if ((fp=fopen("overave.txt","w"))==NULL)
{
printf("overave.txt cannot open!\n");
exit(0);
}
for (i = 0; i < n; i++)
{
if (array[i] > ave)
{
fprintf(fp,"%10f",array[i]);
}
}
fclose(fp);
}
//求平均值
float average(float array[],int n)
{
int i;
float sum = 0;
for (i = 0; i < n; i++)
{
sum += array[i];
}
return sum/n;
}
//10分。。。接过了!
用简单的C语言编程
#include int CopyFile(char* SrcFile,char* DesFile) { FILE* fp,*fw; long length; long n,cpyfinish; char buf[1024]; if((fp=fopen(SrcFile,"rb"))==NULL) { return 1; } fw=fopen(DesFile,"wb"); fseek(fp,0L,SEEK_END); length=ftell(fp); rewind(fp); while(length>0) { n=fread(buf,1,1024,fp); cpyfinish=fwrite(buf,1,n,fw); length-=cpyfinish; } fclose(fw); fclose(fp); return 0; } int main() { CopyFile("a.xml","nnn.xml"); return 0; }
以下为关联文档:
C语言程序编写此题应该属于约瑟夫问题范围。 语句注释,我习惯用了//,请楼主注意哈。 #include"stdlib.h" #include"stdio.h" #define NULL 0 typedef struct point { int data; int NO; struct...
C语言编写简单计算器卡在模除了#include<stdio.h> main(){ float a,b; char c; printf("输入表达式\n"); scanf("%f %c %f",&a,&c,&b); if(c=='+') printf("%.2f\n",a+b); else if(c=='-') printf("%.2f\n",a-b); el...
用C语言编写一个简单的图书管理小程序源代码如下: #include<iostream> #include<iomanip> #include<string> #include<fstream> #include<stdio.h> using namespace std; const int maxb=10000; //最多的图书 clas...
教你如何使用C语言编写简单小游戏编写程序,实现如下表所示的5-魔方阵。 17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9 5-魔方阵 问题分析 所谓“n-魔方阵”,指的是使用1〜n2共n2个自然...
用c语言编写一个简单的程序main() { int a,b,i; bool flag = true; for (i = 0; i < 6; i++) { scanf("%d", &a); if (flag) { b = a; flag = false; } else { if (b > a) b = a; } } prinf("%d", b); }...
求助C语言编写一个简单的程序#include "stdio.h" #include "conio.h" #include "stdlib.h" void main( ) { FILE *fp; int flag,t; printf("输入1为输入数据,0为求平均数并输出\n"); scanf("%d",&flag); if (flag) {...
用C语言编写一个具有简单界面的猜数字游戏分析: 先产生一个随机数N。 然后输入数I,如果i大于N,则提示大于信息。 如果I小于N,则提示小于信息。 直到I==N,则输出成功信息。 这是我用C语言写的。 环境: WIN-C ,TORBO C,如果是...
编写一个简单的C语言程序#include "stdio.h" #include "string.h" #define N 300 void main(){ char a[N],sum='\0'; int i=0,k; printf("input the number:"); scanf("%s",a); k=strlen(a); printf("%d",sum)...
c语言中简单计算器代码的编写注意!是简单的计算器代码编写!c语言中简单计算器代码的编写注意!是简单的计算器代码编写!求php高手写一段简单的代码:-以前无聊的时候写的,感觉还不错。 说明:编译打开程序之后,输入的是算式,就是你要求的那样。...