Major Space
码龄4年
求更新 关注
提问 私信
  • 博客:3,836
    3,836
    总访问量
  • 21
    原创
  • 3
    粉丝
  • 1
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:江苏省
加入CSDN时间: 2021-01-15
博客简介:

m0_54632847的博客

查看详细资料
个人成就
  • 获得1次点赞
  • 内容获得1次评论
  • 获得3次收藏
  • 博客总排名1,279,560名
创作历程
  • 21篇
    2021年
成就勋章

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

创作活动更多

『技术文档』写作方法征文挑战赛

在技术的浩瀚海洋中,一份优秀的技术文档宛如精准的航海图。它是知识传承的载体,是团队协作的桥梁,更是产品成功的幕后英雄。然而,打造这样一份出色的技术文档并非易事。你是否在为如何清晰阐释复杂技术而苦恼?是否纠结于文档结构与内容的完美融合?无论你是技术大神还是初涉此领域的新手,都欢迎分享你的宝贵经验、独到见解与创新方法,为技术传播之路点亮明灯!

55人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

暑假作业二级题8

#include <stdio.h>#define N 4void fun(int (*a)[N], int *b){ int i,j; for(i=0; i<N; i++) {/**********found**********/ b[i]=a[0][i]; for(j=1; j<N; j++)/**********found**********/ if(b[i]<a[j][i]) b[i]=a[j][...
原创
发布博客 2021.08.25 ·
170 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业71-80

#include<stdio.h>#include<math.h>int main(){ long int i,x,y,z; for(i=1;i<100000;i++) { x = sqrt(i+100); y = sqrt(i+268); if(x*x==i+100&&y*y==i+268) { printf("
%ld
",i); } }}#include"stdio.h" main(...
原创
发布博客 2021.08.25 ·
155 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题7

#include <stdlib.h>#include <stdio.h>#define N 20void fun( int *a){ int i, x, n=0; x=rand()%20;/**********found**********/ while (n<N) { for(i=0; i<n; i++ )/**********found**********/ if( x==a[i] ) ...
原创
发布博客 2021.08.18 ·
153 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业61-70

#include <stdio.h>#include <stdlib.h>int main(){ FILE* fp; char ch,filename[10]; printf("please enter file name:"); scanf("%s",filename); if ((fp=fopen(filename,"w"))==NULL) { printf("error"); exit(0); } ch=getchar(); printf(...
原创
发布博客 2021.08.18 ·
192 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题6

#include <stdio.h>#include <string.h>#include <ctype.h>#define N 9long ctod( char *s ){ long d=0; while(*s) if(isdigit( *s)) {/**********found**********/ d=d*10+*s-'0';/**********found**********/ s++; ...
原创
发布博客 2021.08.11 ·
98 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业C语言51-60

#include<stdio.h>#include<stdlib.h>#define LEN sizeof(struct Student)struct Student{ long num; float score; struct Student *next;};int n;struct Student *creat(void){ struct Student *head; struct Student *p1,*p2; n=0; p1=p2=(st...
原创
发布博客 2021.08.11 ·
173 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题5

#include <stdlib.h>#include <stdio.h>#define N 10double fun(double *x){ int i, j; double av, y[N]; av=0; for(i=0; i<N; i++) /**********found**********/ av+=x[i]/N; for(i=j=0; i<N; i++) if( x[i]<av ){ ...
原创
发布博客 2021.08.04 ·
135 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业c语言41-50

#include<stdio.h>int fn(int a,int n){ int s; while(n>=0) { s=a*n+s; a=a*10; n--; } return s;}main(){ int a1,n1,i; scanf("%d%d",&a1,&n1); printf("%d",f...
原创
发布博客 2021.08.04 ·
165 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题4

#include <stdlib.h>#include <stdio.h>#define N 10double fun(double *x){ int i, j; double s, av, y[N]; s=0; for(i=0; i<N; i++) s=s+x[i];/**********found**********/ av=s/N; for(i=j=0; i<N; i++) if( x[i]>a...
原创
发布博客 2021.07.27 ·
115 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业C语言31-40

#include<stdio.h>#include<stdlib.h>void input(int*p, int len){ int i; for (i=0;i<len;i++) { scanf("%d", &p[i]); }}void exchange(int *p, int len){ int max,min; int flag_min=0; int flag_max=0; max=p[0]; min=p[0]; int t...
原创
发布博客 2021.07.27 ·
164 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题3

#include <stdlib.h>#include <stdio.h>#define N 10double fun(double x[],double *av){ int i,j; double d,s; s=0; for(i=0; i<N; i++) s = s +x[i];/**********found**********/ *av=s/N; d=32767; for(i=0; i<N; i++)...
原创
发布博客 2021.07.21 ·
150 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业C语言21-30

#include<stdio.h>main() { int i,j,k,m=0,f=0; int sum=0,max=0,min=0; struct student { int num; char name[20]; char gender; int birthday[3]; int score[4]; int ave; }stu[4]={{10031,"wanggang",'M',{199...
原创
发布博客 2021.07.21 ·
202 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题2

#include <stdlib.h>#include <stdio.h>#define N 10double fun(double x[],double *y){ int i,j; double av;/**********found**********/ av=0.0;/**********found**********/ for(i=0; i<N; i++) av=av+x[i]\N; for(i=j=0; i...
原创
发布博客 2021.07.12 ·
146 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业11-20

11.`#include <stdio.h>#define N 13struct person{int number;int nextp;}link[N+1];int main(){int i,count,h;for(i=1;i<=N;i++){if(i==N)link[i].nextp=1;elselink[i].nextp=i+1;link[i].number=i;}printf("
");count=0;h=N;printf(“sequen
原创
发布博客 2021.07.12 ·
111 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业二级题1

#include <stdio.h>#define N 5typedef struct student { long sno; char name[10]; float score[3];} STU;void fun(char *filename, STU n){ FILE *fp;/**********found**********/ fp = fopen(filename, "rb+");/**********found****...
原创
发布博客 2021.07.04 ·
96 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

暑假作业c语音1-10题

暑假作业1-101.#include<stdio.h>int even(int n);int main(){ int n; int sum=0; while(1) { scanf("%d",&n); if(n<=0) break; if(even(n)==0) { sum+=n; } } printf("The sum of the odd numbers is %d
",sum); return 0;} int e
原创
发布博客 2021.07.04 ·
234 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

寒假作业81-100题

第八十一题: 键盘输入一个大写字母,要求改用小写字母输出,用puthchar和getchar函数编程。#include<stdio.h>void main(){ char ch; ch=getchar(); if(ch<'A'||ch>'Z') { printf("输入的不是大写字母,请重新输入!
"); } ch=ch+32; putchar(ch); putchar('
');} ```
原创
发布博客 2021.02.25 ·
512 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏

寒假作业第61-80

第六十一题:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。(1不是质数,所以1也不是质因数)#include<stdio.h>void main(){int n,i;printf("
please input a number:
");scanf("%d",&n);printf("%d=",n);for(i=2;i<=n;i++) while(n!=i) { if(n%i==0)
原创
发布博客 2021.02.24 ·
122 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

寒假作业第41-60题

第四十一题:.定义一个含有30个整型元素的数组,按顺序赋予从2开始的偶数,然后按顺序以每5个数一组的形式求出平均值并输出。#include "stdio.h"void main() { int arr[30],sum=0; int i,j; for(i=0;i<30;i++) arr[i]=2*i+2; for(i=0;i<30;i++) { sum+=arr[i]; if((i+1)
原创
发布博客 2021.02.24 ·
153 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

寒假作业21-40题

寒假作业21-40题第二十一题:求5*5的二维数组的每行元素的平均值。#include"stdio.h"void main() { int arr[5][6]; int i,j; printf("please input the arr:
"); for(i=0;i<5;i++) for(j=0;j<5;j++) scanf("%d",&arr[i][j]); for(i=0;i&
原创
发布博客 2021.02.23 ·
279 阅读 ·
0 点赞 ·
0 评论 ·
1 收藏
加载更多