编程及软件开发解决方案库

2000万优秀解决方案库,覆盖所有编程及软件开发类,极速查询

今日已更新 1498 篇代码解决方案

  • 1:第三次作业

                        1.上传计算机术语英语词典APP截图到随笔。2.码云gitosc账号906862091@qq.com3.定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p指向数组

    https://www.u72.net/daima/87k8.html - 2024-09-12 11:10:13 - 代码库
  • 2:第三次作业

                        码云账号:744243106@qq.com #include<stdio.h>int main(){    void fun( int a[10]);    int a[10]={9};    fun(a);    }void fun (int a[

    https://www.u72.net/daima/885v.html - 2024-09-12 13:35:30 - 代码库
  • 3:第三次作业

                        码云账号732069608#include<stdio.h>void fun(int *p){    int i;    for(i=0;i<10;i++)    printf("%d\n",*(p+i));}int main(){    int

    https://www.u72.net/daima/886s.html - 2024-09-12 13:38:23 - 代码库
  • 4:第三次作业

                         #include"stdio.h"#include"stdlib.h"int main(){    void fun(int a[10]);    int a[10]={0};                            //定义一个含有10个

    https://www.u72.net/daima/89da.html - 2024-09-12 14:14:25 - 代码库
  • 5:第三、四天笔记总结

                        一:java中方法的介绍        1.1 函数:Java就是方法。        方法:                就是完成特定功能的代码块        格式:                修饰符 返回值类型 方法名(参数类型 参数名1,参数类型 参数

    https://www.u72.net/daima/9a91.html - 2024-09-12 19:53:17 - 代码库
  • 6:第三次作业

                        //定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p指向数组a,定义函数fun,要求在fun内部访问数组,并打印出数组中各元素的值,要求在fun函数内不

    https://www.u72.net/daima/8zm2.html - 2024-09-11 05:54:51 - 代码库
  • 7:Python基础-第三

                        本篇内容:1.集合(set)2.文件操作3.字符编码与转码4.函数一、集合(set)1.集合的特点集合是一个无序的、不重复的数据组合,它的主要作用如下:  ●去重,把

    https://www.u72.net/daima/e9zv.html - 2024-09-16 00:52:57 - 代码库
  • 8:第三次作业

                        题目要求:定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p指向数组a,定义函数fun,要求在fun内部访问数组,并打印出数组中各元素的值,要求在fun函

    https://www.u72.net/daima/82fx.html - 2024-09-12 03:48:14 - 代码库
  • 9:第三次作业

                        1.计算机专业翻译软件截图 用git提交源代码码云账号     2304771795@qq.com 题目要求:定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p

    https://www.u72.net/daima/8rf7.html - 2024-09-11 15:32:22 - 代码库
  • 10:第三次作业

                        1. 2.1394098425@qq.com3.#include<stdio.h>int fun(int a[]){int i;for(i=0;i<=9;i++)//for循环 printf("%d\n",a[i]);//输出 }int main(

    https://www.u72.net/daima/8rxe.html - 2024-09-11 15:56:24 - 代码库
  • 11:第三次作业

                        本程序是要实现用指针作为函数参数,并自定义函数fun,在调用函数内部打印各个数组元素!#include<stdio.h>void fun(int *p,int num){    int i;    f

    https://www.u72.net/daima/84k7.html - 2024-09-12 06:39:33 - 代码库
  • 12:第三次作业

                        一:英语软件截屏二:定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p指向数组a,定义函数fun,要求在fun内部访问数组,并打印出数组中各元素的值

    https://www.u72.net/daima/84fr.html - 2024-09-12 06:48:26 - 代码库
  • 13:第三次作业

                        #include<stdlib.h>int main(){    void fun(int a[9]);    int a[9]={9};    fun(a);    system("pause");}void fun(int a[]){    int i;

    https://www.u72.net/daima/82mn.html - 2024-09-12 04:50:25 - 代码库
  • 14:第三次作业

                        #include<stdio.h>#include<stdlib.h>main(){    int a[12]={1,2,3,4,5,6,7,8,9,10,11,12},i,c;    int *p=&a[0];    scanf("%d",&i);    p=p

    https://www.u72.net/daima/83f3.html - 2024-09-12 05:18:57 - 代码库
  • 15:构建之法第三

                         第10章中提到的如何定义典型用户和典型场景,以及从典型用户到场景,从场景到任务的过程。作者在写书的过程中,也恰恰使用了这套方法论。有了典型用户之后

    https://www.u72.net/daima/mcv4.html - 2024-09-16 18:18:06 - 代码库
  • 16:第三次作业

                        #include<stdio.h>#define N 10//宏定义,定义N为10   int fun(int a[],int n)//定义一个fun函数  { int i; for(i=0;i<n;i++)//用for循环输出数组

    https://www.u72.net/daima/8x7w.html - 2024-09-12 00:03:27 - 代码库
  • 17:第三次作业

                        1.我下载的欧路词典:2.GIT以及码云账号:964390499@qq.com3.#include<stdio.h>#include<stdlib.h>int main(){    int a[10]={1,2,3,4,5,6,7,8,

    https://www.u72.net/daima/87w6.html - 2024-09-12 11:40:52 - 代码库
  • 18:第三次作业

                        1 词典软件2 码云账号852610526@qq.com 3 编程作业#include<stdio.h>int main(){    void fun( int a[10]);    int a[10]={8};    fun(a);

    https://www.u72.net/daima/87xf.html - 2024-09-12 11:42:52 - 代码库
  • 19:第三次作业

                        1.计算机术语英语词典2.码云账号2424047499@qq.com3.定义一个包含有10个整数的数组a并初始化,定义一个指针变量p,p指向数组a,定义函数fun,要求在fun内部

    https://www.u72.net/daima/870h.html - 2024-09-12 11:45:15 - 代码库
  • 20:第三次作业

                            1.上传计算机术语app               2.码云gitosc账号   953154042@qq.com3.在fun内部访问数组且函数内不出现数字10,打印出数组中各元素的

    https://www.u72.net/daima/872w.html - 2024-09-12 11:54:23 - 代码库