主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
云影暮色
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
0
发帖
0
笔记
93
Ta的粉丝
24
关注数
0
粉丝数
24
获赞数
0
阅读数
0
读下列程序,写出程序的输出结果。
ga
C语言
2024年7月23日 11:51
回复 9+
|
赞 0
|
浏览 9.6k
读下列程序,写出程序的输出结果。
2 4 6 8
C语言
2024年7月23日 11:49
回复 9+
|
赞 0
|
浏览 9.8k
读下列程序,写出程序的输出结果
1 3 2
C语言
2024年7月23日 11:48
回复 9+
|
赞 0
|
浏览 11.1k
读下列程序,写出程序的输出结果。
a=4,b=8 x=1,y=2
C语言
2024年7月23日 11:05
回复 9+
|
赞 0
|
浏览 11.6k
编写程序,将一个2×3的二维数组行、列互换,存入另一个3×2的二维数组中。(说明:2×3二维数组的数
#include <stdio.h> int main() { int a[2][3]={{1,2,3},{4,5,6}}; int b[3][2]; int i,j; for(i=0;i<3;i++) { for (...
C语言
2024年7月23日 09:41
回复 9+
|
赞 0
|
浏览 11.6k
有一个已经排好序的数组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 x,i,j,temp1,temp2,end; scanf("%d",&x); ...
C语言
2024年7月23日 09:33
回复 9+
|
赞 0
|
浏览 12.9k
编程建立一个三个结点的链表,存放三个学生的数据,并输出第一个学生的数据信息。假定学生数据结构中只有学
#include <stdio.h> #include <malloc.h> #define NULL 0 #define LEN sizeof(struct student) struct student { long num; float scor...
C语言
2024年7月22日 17:22
回复 9+
|
赞 0
|
浏览 14.5k
编程实现递归方法求5!。
#include <stdio.h> int main() { int i; int f(); for(i=0;i<=5;i++) printf("%d!=%d\n",i,f(i)); return 0; ...
C语言
2024年7月22日 15:50
回复 9+
|
赞 0
|
浏览 16.3k
有一分段函数,y=f(x),当x<5时,y=x-9;当x大于等于5且小于15时,y=5x-3;当x大
#include <stdio.h> int main() { int x,y; scanf("%d",&x); if(x<5) y=x-9; else if(x>=5&&x&...
C语言
2024年7月22日 15:44
回复 9+
|
赞 0
|
浏览 15.8k
读下列程序,写出程序的输出结果。
max value is 36
C语言
2024年7月22日 15:41
回复 9+
|
赞 0
|
浏览 14.0k
读下列程序,写出程序的输出结果。
1#3#2
C语言
2024年7月22日 15:37
回复 9+
|
赞 0
|
浏览 11.4k
读下列程序,写出程序的输出结果。
ogram#
C语言
2024年7月22日 15:32
回复 9+
|
赞 0
|
浏览 12.3k
读下列程序,写出程序的输出结果。
1,1
C语言
2024年7月22日 11:28
回复 9+
|
赞 0
|
浏览 12.6k
读下列程序,写出程序的输出结果。
3 6
C语言
2024年7月22日 11:27
回复 9+
|
赞 0
|
浏览 13.3k
读下列程序,写出程序的输出结果。
15
C语言
2024年7月22日 11:26
回复 9+
|
赞 0
|
浏览 15.0k
输入一个正整数n (1<n≤10),再输入n个整数,用选择法将它们从小到大排序后输出。
#include <stdio.h> int main() { int i,index,k,n,temp; int a[10]; printf("Enter n:"); scanf("%d",&n);...
C语言
2024年7月22日 11:09
回复 9+
|
赞 0
|
浏览 64.6k
程序读入20个整数,统计非负数个数,并计算非负数之和。
#include <stdio.h> int main() { int i,a[20],s,count; s=count=0; for(i=0;i<20;i++) scanf("%d",&a[i]); ...
C语言
2024年7月22日 10:59
回复 9+
|
赞 0
|
浏览 26.9k
下面程序的功能是在a数组中查找与x值相同的元素所在位置,请填空。
#include <stdio.h> int main() { int a[10],i,x; printf("input 10 integers:"); for(i=0;i<10;i++) scanf("...
C语言
2024年7月22日 10:53
回复 9+
|
赞 0
|
浏览 22.1k
从键盘输入一个字符,判断它是否是英文字母。
#include <stdio.h> int main() { char c; printf("input a character:"); c=getchar(); if(c>='a'&&c<...
C语言
2024年7月22日 10:43
回复 9+
|
赞 0
|
浏览 20.7k
编程计算1+3+5…+99的值
#include <stdio.h> int main() { int i,sum=0; i=1; while(i<100) { sum=sum+i; i+=2; } printf("...
C语言
2024年7月22日 10:41
回复 9+
|
赞 0
|
浏览 32.7k
1
2
3
4
5
本科学校:池州学院
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!