主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
evenlu
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
0
发帖
0
笔记
53
Ta的粉丝
23
关注数
0
粉丝数
23
获赞数
0
阅读数
0
编程题:约瑟夫生者死者小游戏 30 个人在一条船上,超载,需要 15 人下船。 于是人们排成一队
#include <stdio.h> #define TOTAL 30 #define REMAIN 15 int main() { int people[TOTAL] = {0}; // 标记每个人是否已下船,0 表示还在船上 &nbs...
C语言
2024年11月19日 14:11
回复 9+
|
赞 0
|
浏览 307
从string文件中读入一个含10个字符的字符串。
#include <stdio.h> #include <stdlib.h> int main() { FILE *fp; char a[11]; // 定义字符数组,大小为 11(10 个字符 + 1 个终止符...
C语言
2024年11月18日 18:53
回复 9+
|
赞 0
|
浏览 2.5k
从键盘输入一行字符,写入一个文件,再把该文件内容读出显示在屏幕上。
#include <stdio.h> #include <stdlib.h> int main() { FILE *fp; char a[100]; // 用于存储用户输入 // 打...
C语言
2024年11月18日 18:42
回复 9+
|
赞 0
|
浏览 2.1k
读入文件d:\\example\\c1.txt ,在屏幕上输出。
#include <stdio.h> #include <stdlib.h> int main() { FILE *fp; // 打开文件 d:\example\c1.txt fp ...
C语言
2024年11月18日 18:36
回复 9+
|
赞 0
|
浏览 2.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 x, i, j; &...
C语言
2024年11月18日 10:03
回复 9+
|
赞 0
|
浏览 12.9k
若有定义: char s[30] = {0}; 运行时输入: This is a string.<回
scanf("%s", s); 行为: scanf("%s", s) 读取输入,遇到空白字符(空格、制表符、换行符)时结束。 因此只能读取字符串中的第一个单词 "This"。 结果: 字...
C语言
2024年11月18日 09:17
回复 9+
|
赞 0
|
浏览 431
有以下程序 #include <stdio.h> main() { char *s=“1201191
题目不是int类型,是char类型的0123456789对应ASCII中48~57
C语言
2024年11月17日 21:20
回复 9+
|
赞 0
|
浏览 358
编程题:企业发放的奖金根据利润提成 利润(I)低于或等于10万元时,奖金可提10%; 利润高于10
#include <stdio.h> int main() { double x; // 使用 double 支持更精确的浮点计算 double bonus = 0.0; printf(&quo...
C语言
2024年11月17日 21:11
回复 9+
|
赞 0
|
浏览 398
编程题 求s=a+aa+aaa+aaaa+aa...a的值,其中a是一个数字。例如2+22+222
#include <stdio.h> int main() { int a, n; // `a` 是数字, `n` 是加数的个数 int i; int term = 0; // 用于保存每一项 &...
C语言
2024年11月17日 14:28
回复 9+
|
赞 0
|
浏览 326
编程题:将一个正整数分解质因数。例如:输入90,打印出90=2*3*3*5。
#include <stdio.h> void prime_factorization(int n) { printf("%d = ", n); // 打印初始数字 int is_first = 1; &...
C语言
2024年11月17日 14:20
回复 9+
|
赞 0
|
浏览 417
编程题:有1、2、3、4个数字,能组成多少个互不相同且无重复数字的三位数?都是多少?
#include <stdio.h> int main() { int x, y, z; int count = 0; // 计数器 printf("由数字 1, 2, 3, 4 组成...
C语言
2024年11月17日 11:22
回复 9+
|
赞 0
|
浏览 293
有以下程序段 scanf("%d%d%d",&a,&b,&c); if(a<b) a==b; if(
第一行:scanf 读取三个整数 a, b, c。 第二行:if (a < b) a == b; a == b 是一个比较操作,而不是赋值操作。 该语句仅比较 a 和 b 是否相等,并没有对 a 进行任何修改。 因此,此语句不会影响变量的...
C语言
2024年11月17日 10:36
回复 9+
|
赞 0
|
浏览 310
有如下程序 #include <stdio.h> main() { if (’\0’ == 0) p
if ('0' == 0) '0' 是字符 '0',其 ASCII 值为 48。 条件 '0' == 0 不成立。 不执行 putchar('Y');,无输出。
C语言
2024年11月17日 09:57
回复 9+
|
赞 0
|
浏览 302
有如下程序 #include <stdio.h> main() { int i = 1; for (
printf 的返回值是成功输出的字符总数,包括\n
C语言
2024年11月17日 09:54
回复 9+
|
赞 0
|
浏览 269
有如下程序 #include <stdio.h> main() { int x = 0x13; if
赋值操作 = 而非比较操作 ==: 在条件 if (x = 0x18) 中,= 是赋值操作,而不是逻辑比较操作。 这会将 0x18 的值赋给 x,然后条件判断的是赋值结果(即非零值为 true),所以条件始终为 true。
C语言
2024年11月17日 09:47
回复 9+
|
赞 0
|
浏览 312
编程题:计算两个时间段的差值 输入开始时间: 输入小时、分钟、秒:12 34 55 输入停止时间
#include <stdio.h> typedef struct time{ int hour; int min; int sec; }time; time subs...
C语言
2024年11月16日 20:39
回复 9+
|
赞 0
|
浏览 354
编程题:连接两个字符串 输入第一个字符串: google 输入第二个字符串: noobdream
#include <stdio.h> #include <string.h> int main() { char a[50], b[50], c[100]; // 定义较大的缓冲区以存储输入和结果 printf...
C语言
2024年11月16日 19:51
回复 9+
|
赞 0
|
浏览 225
编程题:删除字符串中的除字母外的字符 输入一个字符串: run4#$1oob 输出: runoob
#include <stdio.h> #include <string.h> int main() { char a[100]; int i = 0, j = 0; printf(&...
C语言
2024年11月16日 19:41
回复 9+
|
赞 0
|
浏览 284
编程题:将奇数数组与偶数数组合并为一个数组 偶数 -> 0 2 4 6 8 奇数 -> 1
#include <stdio.h> int main() { int n1, n2; // 输入偶数数组 printf("请输入偶数数组的大小: "); &n...
C语言
2024年11月16日 19:34
回复 9+
|
赞 0
|
浏览 235
编程题:将一个数组拆分为一个为奇数数组,一个为偶数数组 原始数组 -> 0 1 2 3 4 5
#include <stdio.h> int main() { int a[10]={0,1,2,3,4,5,6,7,8,9}; int b[5]; in...
C语言
2024年11月16日 19:30
回复 9+
|
赞 0
|
浏览 217
1
2
3
本科学校:宁波财经学院
目标学校:无
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!