主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
Zzhao
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
0
发帖
0
笔记
80
Ta的粉丝
179
关注数
0
粉丝数
179
获赞数
0
阅读数
0
程序读入20个整数,统计非负数个数,并计算非负数之和。
i < 20 s += a[i]
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 26.8k
读下列程序,写出程序的输出结果。
3 6
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 13.2k
读下列程序,写出程序的输出结果。
1#3#2
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 11.4k
读下列程序,写出程序的输出结果。
max value is 36
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 14.0k
有一分段函数,y=f(x),当x<5时,y=x-9;当x大于等于5且小于15时,y=5x-3;当x大
#include<stdio.h> int main(){ double x,y; printf("请输入x的值:"); scanf("%d",&x); if(x < 5) { y = x - 9; } else ...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 15.7k
编程实现递归方法求5!。
#include<stdio.h> int fun(int n) { if(n == 1) return 1; else return n * fun(n-1); } int main() { int n = 5; printf("%d&quo...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 16.2k
编程建立一个三个结点的链表,存放三个学生的数据,并输出第一个学生的数据信息。假定学生数据结构中只有学
#include<stdio.h> #include<malloc.h> #define NULL 0 #define LEN sizeof(struct student) struct student{ int num; &nb...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 14.4k
有一个已经排好序的数组a[11]={1,5,6,7,13,22,27,37,38,45}。编程实现,
#include<stdio.h> int main(){ int a[11] = {1,5,6,7,13,22,27,37,38,45}; int temp1,temp2,num,end,i,j; &nb...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 12.8k
编写程序,将一个2×3的二维数组行、列互换,存入另一个3×2的二维数组中。(说明:2×3二维数组的数
#include<stdio.h> int main(){ int a[2][3] = {3,6,1,8,5,7}; int b[3][2]; printf("...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 11.5k
读下列程序,写出程序的输出结果。
a=4,b=8 x=1,y=2
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 11.6k
读下列程序,写出程序的输出结果
1 3 2
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 11.1k
读下列程序,写出程序的输出结果。
2 4 6 8
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 9.8k
读下列程序,写出程序的输出结果。
ga
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 9.6k
读下列程序,写出程序的输出结果。
12
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 9.6k
读下列程序,写出程序的输出结果。
15
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 10.4k
编写一个求水仙花数的函数:求 3 位正整数中的全部水仙花数。所谓水仙花数是指其各位
#include<stdio.h> int main(){ int num; int x,y,z; printf("请输入一个三位正整数:"); &...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 14.4k
编写程序,将字符串 s1 中的全部字符拷贝到字符数组 s2 中,不要用 strcpy 函数;拷贝时,
#include<stdio.h> int main(){ char a[10],b[10]; gets(a); int i = 0; &nb...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 12.0k
有 10 个职工,每个职工的数据包括:编号、姓名、基本工资,输入这 10 个职工的信息, 然后求出其
程序有问题 #include<stdio.h> struct staff{ int num; char name[10]; float salary; }s[2]; ...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 13.0k
编程实现:输入两个正整数 m 和 n,求其最大公约数。
#include<stdio.h> int main(){ int a,b,t; printf("请输入两个正整数:\n"); scanf(&quo...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 10.5k
编写程序,将一个 2×3 的二维数组行、列互换,存入另一个 3×2 的二维数组中。
#include<stdio.h> void main(){ int a[2][3] = {1,2,3,4,5,6}; int b[3][2]; for(int i =...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 10.8k
1
2
3
4
本科学校:长春工业大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!