主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
讨论区
兑换中心
登录
注册
上岸
good*
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
0
发帖
0
笔记
6
Ta的粉丝
285
关注数
1
粉丝数
285
获赞数
0
阅读数
0
程序运行结果
for( ;表达式1,表达式2;)这个东西是以表达式二为主的
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 22.4k
编程建立一个三个结点的链表,存放三个学生的数据,并输出第一个学生的数据信息。假定学生数据结构中只有学
#include <stdio.h> #include <malloc.h> #define NULL 0 #define LEN sizeof(struct student) struct student {long num; float score; ...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 14.6k
如果int a=3,b=4;则条件表达式"a<b? a:b"的值是
:表达式,条件正确左边否则右边
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 124.6k
编写程序,将字符串 s1 中的全部字符拷贝到字符数组 s2 中,不要用 strcpy 函数;拷贝时,
#inculde<stdio.h> int main() {char s1[20],s2[20]; int i; scanf("%s",s1); for(i=0;s1[i]!='\0';i++)  ...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 12.1k
有 10 个职工,每个职工的数据包括:编号、姓名、基本工资,输入这 10 个职工的信息, 然后求出其
#include<stdio.h> struct staff { int num; char name[8]; float salary; }s[10]; int main() { int m...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 13.1k
编程实现:输入两个正整数 m 和 n,求其最大公约数。
#include<stdio.h> int main() { int m,n,i; scanf("%d,%d",&m,&n); i=m; while(!(m%i==0&&n%i==0)) i--; printf(&q...
C语言
2023年12月1日 18:09
回复 9+
|
赞 0
|
浏览 10.7k
本科学校:华北水利水电大学
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!