首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
固态氧化碳
这个人很懒,什么都没有写...
关注
发消息
文章
0
题解
8
发帖
0
笔记
0
Ta的粉丝
125
关注数
0
粉丝数
125
获赞数
112
阅读数
4022
序列求平均 题解:
#include <iostream> using namespace std; int main(){ int n,m; int a[101]={0}; a[0]=2;  ...
P1672
2025年3月23日 15:04
回复 0
|
赞 1
|
浏览 71
成绩排序2.0 题解:记录一下
#include <iostream> #include <algorithm> using namespace std; typedef struct student { int p; int gr...
P1159
2025年2月15日 10:54
回复 1
|
赞 20
|
浏览 383
字母频率 题解:自用
#include<iostream> #include<stdio.h> using namespace std; void func(string &s) { for(int i=0;i<s.length();i++) &nbs...
P1019
2025年2月27日 23:17
回复 0
|
赞 5
|
浏览 228
字符串排序2 题解:借鉴了前人的做法
#include<bits/stdc++.h> using namespace std ; bool cmp (char c, char b) //这串代码是为了将字符串中的大写字母转换成小写统一进行排序比较 { if(...
P1255
2025年2月15日 16:49
回复 0
|
赞 11
|
浏览 320
首字母大写 题解:注意这题目的要求 不是空格后面首字母要大写 是空白符!!!
卡了我好久 还纳闷怎么回事。。。。 代码如下 func是小写转换成大写 多余的头文件是懒得删了 #include <stdio.h> #include <iostream> #include <string.h> using namespace ...
P1240
2025年2月12日 17:35
回复 0
|
赞 37
|
浏览 697
字符串翻转 题解:fgets函数会读取换行符 注意字符串长度要多减一个
#include <stdio.h> #include <string.h> int main() { char s[1000]; fgets(s,sizeof(s),stdin); for(int i=strlen...
P1006
2025年2月9日 15:43
回复 0
|
赞 28
|
浏览 786
数字模式的识别 题解:最简单暴力的做法
这应该是最容易想到的了 直接暴力解 把出现的数字存入数组 然后从小到大遍历找最大值 #include <stdio.h> #include <iostream> using namespace std; int count[2000000]={0...
P1057
2025年1月13日 16:30
回复 0
|
赞 3
|
浏览 410
整数去重 题解:为什么这段代码会报错runtime error呢 devc++上都能运行啊
#include <stdio.h> int main() { int a[1000]={0}; int n,i,j; while(scanf("%d",&n)!=EOF) { ...
P2021
2024年1月17日 20:19
回复 1
|
赞 7
|
浏览 1.1k
本科学校:齐鲁工业大学
目标学校:浙江工商大学
点此申请N诺身份认证
获得 noobdream 认证,享受多重认证福利!