谁能用C语言帮我写几个小程序 急求

供稿:hz-xin.com     日期:2025-01-12
用C语言写程序

一楼说的不对,程序可以连续输入。
fp=fopen("e:\am.txt","w"))==NULL
改为:
fp=fopen("e:\\am.txt","w"))==NULL
再添加一句: ch=getchar();
就可以看到输入的内容写到文本文档里了。
程序如下:
#include "stdio.h"
#include "stdlib.h"
main()
{
FILE *fp;
char ch;
if((fp=fopen("e:\\am.txt","w"))==NULL)
{
printf("cannot open file
");
exit(0);
}
ch=getchar();
ch=getchar();
while(ch!='#')
{
fputc(ch,fp);putchar(ch);
ch=getchar();
}
putchar(10);
fclose(fp);
}

#include//头文件
int main()
{
int n,i,j,k; //定义一个数作为行数
n=5;
for(i=0;i<n;i++) //循环在每一行
{
for(j=0;j<n-i-1;j++)//输出每一行前面的空格
{
printf(" ");
}
for(k=j;k<n;k++) //输出每一行*
{
printf("%d",i+1);
}
printf("
");
}
return 0; //结束
}

1、
#include<stdio.h>
int main()
{
int max(int x,int y,int z);
int a,b,c,d;
scanf("%d%d%d",&a,&b,&c); //scanf%d间不能有逗号,后面是输入的地址因此得加&
d=max(a,b,c); //输入的是abc,不是x,y,z//x,y,z是形参a,b,c是实参
printf("max=%d",d);//不是print是printf
return 0;
}
int max(int x,int y,int z)
{
return(x>y?(x>z?x:z):(y>z?y:z));
}

2、
#include<stdio.h>
int main()
{
int a,b,num1,num2,temp;
printf("Input a & b:");
scanf("%d%d",&num1,&num2);
if(num1>num2) /*找出两个数中的较大值*/
{
temp=num1; num1=num2; num2=temp; /*交换两个整数*/
}
a=num1; b=num2;
while(b!=0) /*采用辗转相除法求最大公约数*/
{
temp=a%b;
a=b;
b=temp;
}
printf("The GCD of %d and %d is: %d\n",num1,num2,a); /*输出最大公约数*/
printf("The LCM of them is: %d\n",num1*num2/a); /*输出最小公倍数*/
return 0;
}

3、
#include <stdio.h>
int main()
{
int year,result=0;
printf("输入一个年份:\n");
scanf("%d",&year);
if(year%100==0)
{
if(year%400==0)
result=1;
}
else if(year%4==0)
result=1;

if(result==1)
printf("\n%d是闰年",year);
else
printf("\n%d不是闰年",year);
return 0;
}

4、
#include<stdio.h>
#include<conio.h>
int main()
{
char *toDaXie(char *s);/*函数--变大写*/
char *s;
printf("Input a string please!\n");
gets(s);

printf("The result:\n%s\n",toDaXie(s));
getch();
return 0;
}
char *toDaXie(char *s)/*函数--变大写的具体内容*/
{
int i;
for(i=0;i<strlen(s);i++)
{
if(s[i]>96&&s[i]<123)/*如果这个字是小写字母*/
s[i]-=32;/*那就把它变成大写*/

}
return s;

}

5、
#include<stdio.h>
int main()
{
printf("
?
? ? ?
? ? ? ? ?
? ? ? ? ? ? ?
? ? ? ? ?
? ? ?
?
");
return 0;
}

全是做苦力 0分?
没时间

你做什么用的。你也应该是学C语言的吧,这些书上都有,而且都是基础吧
反正我感觉5个题,应该有4个都容易做

C语言编写的几个程序,合并到一起
以下是我随手写的,是最最基本的,你可以自己加上清屏,返回上一级 之类的功能 include<stdio.h> include<conio.h> include<stdlib.h> \/\/3个小程序 void fun_a(){printf("this is fun_a\\n");} void fun_b(){printf("this is fun_b\\n");} void fun_c(){printf("this is fun_c\\...

跪求C语言编程高手帮忙编个小程序,大一年级的
tot=a+b+c+d+e;printf("字符串中共有:%d字符\\n大写字母:%d个\\n小写字母:%d个\\n数字:%d个\\n空格:%d个\\n其他字符:%d\\n",tot,a,b,c,d,e);for(i=0;i<tot-1;i++){ iPos = i;for(j=i+1;j<tot;j++)if(ch[j]<ch[iPos])iPos=j;iTemp = ch[i];ch[i] = ch[...

求几个简单的C语言小程序
return (a*b)\/c;} void main(){ int a,b;cout<<"请按从大到小的顺序输入2个要求值的数"<<endl;cin>>a>>b;cout<<"两个数的最大公约数是"<<yue(a,b)<<endl;cout<<"两个数的最小公倍数是"<<bei(a,b,yue(a,b))<<endl;} \/\/求最大公约数程序2 include <stdio.h> int ...

用C语言编写一个输出图形的小程序。
法1:include <stdio.h> include<conio.h> void main(){ int i,j;for(i=0;i<4;i++){ for(j=1;j<4-i;j++)printf(" ");for(j=4-i;j<=4+i;j++)printf("*");printf("\\n");} for(i=4;i<7;i++){ for(j=0;j<i-3;j++)printf(" ");for(j=i-3;j<=9-i;j...

c语言编个小程序
本题的一个完整c程序如下,win-tc和Dev-c++下已调试通过。其中通用排序函数为void sort()include "stdio.h"include "stdlib.h"include "conio.h"include "string.h"define ROW 100 define COL 80 void sort();int main(){ int n,i;char s[ROW][COL+1];printf("Please input the number ...

用C语言写一个小程序!
\/*money management system*\/ include "stdio.h"include "dos.h"include "conio.h"main(){ FILE *fp;struct date d;float sum,chm=0.0;int len,i,j=0;int c;char ch[4]="",ch1[16]="",chtime[12]="",chshop[16],chmoney[8];pp:clrscr();sum=0.0;gotoxy(1,1);printf("|...

高手们,帮我编几个c语言的小程序!!谢谢.明天就要交!!
3.编一C程序,它能读入两个整数m与n,计算并输出m与n的绝对值的最大公约数及最小公倍数 解:源程序如下:int gys (int x,int y){ int j;j=(x<y)?x:y;for(;j>0;j--)if(x%j==0&&y%j==0)break;else continue;return (j);} int gbs (int z,int w){ int i;i=(z>w)?

求C语言的小程序
temp=a[j]; a[j]=a[j+1]; a[j+1]=temp; } } }}int main(){ int a[k]; printf("请输入10个整数:

c语言能写出什么样的小程序?
C语言提供了许多低级处理的功能,但仍然保持着良好跨平台的特性,以一个标准规格写出的C语言程序可在许多电脑平台上进行编译,甚至包含一些嵌入式处理器(单片机或称MCU)以及超级电脑等作业平台。题目:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?程序分析:可填在百位...

求C语言大佬编一个小程序,急!感激不尽!是一个有趣的文件搜索引擎_百度...
另一种是提交网站搜索,即网站拥有者主动向搜索引擎提交网址,它在一定时间内(2天到数月不等)定向向你的网站派出“蜘蛛”程序,扫描你的网站并将有关信息存入数据库,以备用户查询。随着搜索引擎索引规则发生很大变化,主动提交网址并不保证你的网站能进入搜索引擎数据库,最好的办法是多获得一些外部...