文章列表
题目 3020: 最大数位置
摘要:```
#include
using namespace std;
int a[1010];
int main()
{
int n,t=0;
cin >>n;
for (int ……
题目 2791: 计算邮资
摘要:题目描述
根据邮件的重量和用户是否选择加急计算邮费。计算规则:重量在1000克以内(包括1000克), 基本费8元。超过1000克的部分,每500克加收超重费4元,不足500克部分按500克计算;如……
题目 2790: 分段函数。
摘要:题目描述
编写程序,计算下列分段函数y=f(x)的值。
y=-x+2.5; 0 ……
题目 1151: C语言训练-计算一个整数N的阶乘
摘要:```
#include
using namespace std;
int main()
{
int n,i;
int sum=1;
cin >>n;
for(i=1;i……
实现strcpy的功能
摘要:#define _CRT_SECURE_NO_WARNINGS
#include <stdio.h>
#include <assert.h>
char* my_strcpy(char* des……