题目 2790: 分段函数。 摘要:题目描述 编写程序,计算下列分段函数y=f(x)的值。 y=-x+2.5; 0 …… 文章列表 2023年12月06日 0 点赞 0 评论 169 浏览 评分:0.0
出现次数最多的字母 摘要:#include<stdio.h>#include<string.h>int main(){ char a[10001]; int b[10001]; char c[10001]; scanf("%s…… 文章列表 2023年12月13日 0 点赞 0 评论 126 浏览 评分:0.0
题目 3020: 最大数位置 摘要:``` #include using namespace std; int a[1010]; int main() { int n,t=0; cin >>n; for (int …… 文章列表 2023年12月13日 0 点赞 0 评论 109 浏览 评分:0.0
实现质因数分解 摘要:import java.util.*;public class Main { public static List<Integer> primeFactors(int n) { L…… 文章列表 2023年12月15日 0 点赞 0 评论 97 浏览 评分:0.0
信奥赛原题 摘要:乘坐飞机时,当乘客行李小于等于20公斤时,按每公斤1.68元收费,大于20公斤时,按每公斤1.98元收费,编程计算收费(保留2位小数)。#include <bits/stdc++.h>//用万能头文件…… 文章列表 2023年12月16日 0 点赞 0 评论 138 浏览 评分:0.0
字节的进位 摘要:Byte 字节KB 千字节 1KB=1024b=2^10MB 1000000 百万 1MB=1024KBGB 10^9 1GB=1024MBTB 10^12 1TB=102…… 文章列表 2023年12月17日 0 点赞 0 评论 122 浏览 评分:0.0
各种输入类型 摘要:long long 8 9*10^18 9000000000000000000double 8 1.7*10^308flout …… 文章列表 2023年12月17日 0 点赞 0 评论 102 浏览 评分:0.0
c代码记录之获取字符串长度--指针练习 摘要:原题链接:[获取字符串长度](https://www.nowcoder.com/practice/9a2d212d23f5436c80607d5e68c6d12a?tpId=291&tqId=2185…… 文章列表 2023年12月18日 0 点赞 0 评论 146 浏览 评分:0.0
c代码记录之复制部分字符串--指针练习 摘要:原题链接:[复制部分字符串](https://www.nowcoder.com/practice/8f5b923683b94e549880e3c8370e3e55?tpId=291&tqId=2185…… 文章列表 2023年12月19日 0 点赞 0 评论 267 浏览 评分:0.0
c代码记录之排序--指针练习 摘要:原题连接:[排序](https://www.nowcoder.com/practice/26a0c92e9266443887a3bf81aff8e188?tpId=291&tqId=2371489&r…… 文章列表 2023年12月19日 0 点赞 0 评论 174 浏览 评分:0.0