主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
蔡瑾熙
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
0
发帖
0
笔记
142
Ta的粉丝
141
关注数
0
粉丝数
141
获赞数
0
阅读数
0
写一个函数,将一个字符串中的元音字母复制到另一字符串,然后输出。
#include<stdio.h> #include<string.h> void copy(char a[],char b[]) { int i,j; for(i=0,j=0;b[i]!=&...
C语言
2024年1月31日 00:35
回复 9+
|
赞 0
|
浏览 334
写一个函数,使输人的一个字符串按反序存放,在主函数中输入和输出字符串。
#include <stdio.h> #include <string.h> int main() { void rev(char a[]); //输入字符串 &nbs...
C语言
2024年1月31日 00:30
回复 9+
|
赞 0
|
浏览 413
写一个函数,使给定的一个3X3的二维整型数组转置,即行列互换。
#include <stdio.h> void zhuanzhi(int a[3][3]) { int i, k, t; for (i = 0; i < 2; i++) &n...
C语言
2024年1月31日 00:26
回复 9+
|
赞 0
|
浏览 447
编写一个程序,将字符数组s2中的全部字符复制到字符数组s1中,不用strcpy函数。复制时,‘\0’
#include<stdio.h> #include<string.h> #include<math.h> int main() { printf("input s2:"); char ...
C语言
2024年1月31日 00:23
回复 9+
|
赞 0
|
浏览 392
编一程序,将两个字符串连接起来,不要用strcat函数
#include<stdio.h> #include<string.h> int main() { char s1[100] = { 0 }; char s2[100] = { 0 }; &nb...
C语言
2024年1月31日 00:20
回复 9+
|
赞 0
|
浏览 404
有一行电文,以按下面规律译成密码: A--->Z a--->z B--->Y b--->Y
#include<stdio.h> int main() { char s[100]={0}; scanf("%s",s); int len=str...
C语言
2024年1月30日 23:46
回复 9+
|
赞 0
|
浏览 515
输出以下图案: * * * * * * * * * * * * * * *
#include<stdio.h> int main() { for (int i = 0; i < 5; ++i) { /...
C语言
2024年1月30日 23:37
回复 9+
|
赞 0
|
浏览 362
有一篇文章,共有3行文字,每行有80个字符。要求分别统计出其中英文大写字母、小写字母、数字、空格以及
#include <stdio.h> int main() { int large = 0,low = 0,digit = 0,space = 0,other = 0; char text[3][80]; &nb...
C语言
2024年1月30日 23:35
回复 9+
|
赞 0
|
浏览 412
编程实现:输出一下的杨辉三角(要求输出10行)
#include <stdio.h> int main(){ int n,x[100][100],i,j; scanf("%d", &n); &nbs...
C语言
2024年1月30日 23:26
回复 9+
|
赞 0
|
浏览 570
将一个数组中的值按逆序重新存放。例如:原来顺序为8,6,5,4,1。要求改为1,4,5,6,8。
#include<stdio.h> int main() { int arr[5] = {8,6,5,4,1}; int t = 0; int right = 4; &...
C语言
2024年1月30日 19:18
回复 9+
|
赞 0
|
浏览 416
编程实现:求一个3 X 3的整形矩阵对角线元素之和
#include<stdio.h> int main() { int i,j; int sum1 = 0, sum2 = 0; int a[3][3] = { 0 };...
C语言
2024年1月30日 19:14
回复 9+
|
赞 0
|
浏览 433
输出以下图案: * *** ***** ******* *****
#include<stdio.h> int main() { for (int i = 0; i < 3; i++)//上半部分 { &...
C语言
2024年1月30日 19:09
回复 9+
|
赞 0
|
浏览 476
猴子吃桃问题。猴子第1天摘下若干个桃子,当即吃了一半,还不过瘾,又多吃了一个。第2天早上又将剩下的桃
#include<stdio.h> int main() { int n = 1;//n为第十天剩下的桃子数 for (int i = 1; i < 10; i++)//通过第10天剩下的桃子数反推第一天摘下的桃子数。猴...
C语言
2024年1月30日 17:48
回复 9+
|
赞 0
|
浏览 606
求(即求1!+2!+3!+4!+…+20!)。
#include<stdio.h> int main() { double total_sum = 0; for(int i = 1; i <= 20; i++) ...
C语言
2024年1月30日 14:21
回复 9+
|
赞 0
|
浏览 399
求之值,其中a是一个数字,n表示a的位数,n由键盘输入。例如: 2+22+222+2222+2222
#include <stdio.h> #include <math.h> int main() { //n为a的个数 int n; double a, pr...
C语言
2024年1月30日 14:17
回复 9+
|
赞 0
|
浏览 466
输人一行字符,分别统计出其中英文字母、空格、数字和其他字符的个数。
#include <stdio.h> int main() { char c; int charnum = 0, spacenum = 0, digitnum = 0, othernum = 0; &nbs...
C语言
2024年1月30日 14:13
回复 9+
|
赞 0
|
浏览 377
输入4个整数,要求按由小到大的顺序输出。
#include <stdio.h> int main() { int a,b,c,d; scanf("%d %d %d %d",&a,&b,&c,&d); &n...
C语言
2024年1月30日 14:02
回复 9+
|
赞 0
|
浏览 503
功能:判断m是否为素数。
int fun(int m) { int i,k=1; if(m<=1) k=0; for(i=2;i<m;i++) if(m%i==0) k=0; &n...
C语言
2024年1月29日 19:15
回复 9+
|
赞 0
|
浏览 1.4k
功能:找出一批正整数中的最大的偶数。
int fun(int a[],int n) { int i,amax=-1; for(i=0;i<n;i++) if(a[i]%2==0) if (a[i]>amax) ...
C语言
2024年1月29日 19:13
回复 9+
|
赞 0
|
浏览 1.7k
功能:求一个四位数的各位数字的立方和
int fun(int n) { int d,k,s=0; while (n>0) { d=n%10; s+=d*d...
C语言
2024年1月29日 19:07
回复 9+
|
赞 0
|
浏览 1.6k
1
2
3
...
8
本科学校:山东工商学院
目标学校:浙江工商大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!