首页 > 互联网 > 请大神帮我改改

请大神帮我改改

互联网 2023-09-23

自己写了一篇文章(小故事),求大神帮我改改

奇迹是努力的另一个名字 为什么会有人创造奇迹?是坚持?是自信?是勇气?还是……我认为最主要的是努力。 努力,说说很简单,做做却非常难。我的生活中也有许多困难,可是在我快放弃时,是努力让我坚持了下来: 踢毽子,对于现在的我来说已经是小菜一碟了,可是回想起初学踢毽子的情景,我还是不由得会发一会呆,来回忆那一段值得我回忆的事情。 记忆的风又把时间推回了二年级放学后的某一天,爸爸带来了一个“新朋友”介绍给了我,它就是五颜六色的,在爸爸脚中好像一只翩翩起舞的蝴蝶的——毽子“先生”。我直接拿起了毽子往上一抛,当我自信满满的想我一定能踢到时,刚抬起脚就被自己绊了个正着,我十分不服气,心想:一个小小的尖子可以

C语言 对链表排列 请大神帮我改改 (学生学号)

/*

第1个学生信息: 66384 90

第2个学生信息: 89568 86

第3个学生信息: 36458 78

第4个学生信息: 89654 98

第5个学生信息: 65412 80

第6个学生信息: 86549 78

第7个学生信息: 0 0

排序前:

number score

66384 90.00

89568 86.00

36458 78.00

89654 98.00

65412 80.00

86549 78.00

排序后:

number score

89654 98.00

66384 90.00

89568 86.00

65412 80.00

36458 78.00

86549 78.00

Press any key to continue

*/

#include
#include
#defineM4//M表示学生人数
#defineLENsizeof(structStudent)//用LEN表示数组长度
structStudent{//定义student结构体,xh表示学号,cj表示成绩
longxh;
doublecj;
structStudent*next;
};
//全局函数声明:
structStudent*creat(void);
voidsort(structStudent*head);
voidprint(structStudent*head);
voidFreeMemory(structStudent*head);
intmain(){
structStudent*head=creat();
printf("排序前:\n");
print(head);
sort(head);
printf("排序后:\n");
print(head);
FreeMemory(head);
return0;
}
voidsort(structStudent*head){//链表排序
structStudent*q,*pt,*p=head;
if(p==NULL)return;
while(p->next){
q=p->next;
while(q->next){
if(p->next->cjnext->cj){
pt=p->next;
p->next=q->next;
q->next=q->next->next;
p->next->next=pt;
}
elseq=q->next;
}
p=p->next;
}
}
structStudent*creat(){//创建链表
structStudent*p,*head;
longid,i=1;
doublescore;
head=p=(structStudent*)malloc(sizeof(structStudent));
while(1){
printf("第%d个学生信息:",i);
scanf("%ld%lf",&id,&score);
if(id==0)break;
p->next=(structStudent*)malloc(sizeof(structStudent));
p->next->xh=id;
p->next->cj=score;
++i;
p=p->next;
}
p->next=NULL;
returnhead;
}
voidprint(structStudent*head){//显示链表
structStudent*p=head->next;
printf("numberscore\n");
while(p){
printf("%-15ld%15.2lf\n",p->xh,p->cj);
p=p->next;
}
}
voidFreeMemory(structStudent*head){
structStudent*q,*p=head;
while(p){
q=p;
p=q->next;
free(q);
}
}

请哪位大神帮我改下图片 图片大于45KB,像素大于295*413的照片?

修改图片大小以及像素可以借助photo shop软件来实现。在PS软件中新建一个画布,将其宽度和高度设置为大于295和413像素。然后将需要的图片拖移到新建的画布上调整好位置进行保存。在保存之后的选项中选定需要的图片大小即可。具体的设置方法如下:

1、在电脑上打开PS软件进入。

2、进入到软件以后点击左上角的文件,选择新建。

3、在出现的新建对话框中输入宽度为300、高度为415像素,分辨率设置为300以后点击确定。

4、在软件中点击左上角的文件,选择打开按钮。

5、在出现的对话框中选定该图片以后点击打开按钮。

6、打开该图片以后,点击工具栏的箭头。将鼠标放置在照片上不放,拖移至新建的画布上。

7、然后点击菜单栏编辑,选择变换下面的缩放按钮。

8、在图片出现边框以后,按住SHIFT键不放,沿着图片对角缩小或者拉大该图片。将图片摆放至合适区域以后按下回车键。

9、然后点击左上角的文件,选择存储为按钮。

10、在出现的保存对话框中输入图片名称以后选择图片格式以后点击保存按钮。

11、此时在出现的选项中拉动大下文件之间的按钮,当预览大小大于45KB以后点击确定按钮。

12、找到图片的保存位置,可以看到该图片当前像素为300*415(满足大于295*413要求)、大小为56.9KB(满足大于45KB要求)。

求各位大神帮我改改这个C++程序的错呗

#include
using namespace std;
class Goods
{//Goods类
public:
Goods(char name,float price,int amount);
void add();//数量加一
void Show();//输出信息的输出函数
~Goods(){}
private:
char Name;//这个地方是char??我觉得string类型更好吧,名字一个字符···
float Price;
int Amount;
};
Goods::Goods(char name,float price,int amount){
Name=name;
Price=price;
Amount=amount;
}
void Goods::add(){
cout<<"amountadd:"<<++Amount<}
void Goods::Show(){
cout<<"name:"<cout<<"price:"<cout<<"amount:"<}
class Medication: public Goods{// 派生类
public:
Medication(char name,float price,int amount,int y,int m,int d/*这里粗心字符写错了,我改了*/):Goods(name,price,amount){
year=y;mounth=m;day=d;
}// 构造函数
void usefulday(){// 判断月份并计算保质期日期
cout<<"保质期为6个月"<switch(mounth){ //这里最好判断一下day变量,如果day = 32 呢??
case 1:
case 2:
case 3:
case 4:
case 5:
case 6: cout<break;
case 7: cout<break;
case 8: cout<break;
case 9: cout<break;
case 10: cout<break;
case 11: cout<break;
case 12: cout<break;
default :cout<<"error"<}
}// 保质期函数
void out(){// 输出函数
usefulday(); //你的函数没有调用,这里用应该就行
Show();// Goods::Show
add();// Goods::add //这里什么意思?我也不去知道了,反正你自己明白就好
}
~Medication(){}// 析构函数
private:
int year;int mounth;int day;
};
int main(){
char na;float pr;int am,y,m,d;
cout<<"Please entry name(请输入名称)"<cin>>na;
cout<<"Please entry price(请输入单价)"<cin>>pr;
cout<<"Please entry amount(请输入数量)"<cin>>am;
cout<<"Please entry year mounth day(请输入年 月 日)"<cin>>y>>m>>d;
Medication me(na,pr,am,y,m,d);
me.out();
return 0;
}
楼主还有什么不同的意见,大家一起再讨论。

大神帮我改改

err1 CALL SORT(O,P,Q) 这句中 O对应的是integer型的一维数组,在主程序中没有定义; err2和3 同理 P和Q在主程序中均没有声明; 最后 主程序中 CALL SORT(O,P,Q) 需要给这些变量赋值。 你这是一个排序程序,就目前这个程序的功能来说只能对数组O的前10个变量进行操作。

标签:改改 大神 C(编程语言) CC++ 编程语言

大明白知识网 Copyright © 2020-2022 www.wangpan131.com. Some Rights Reserved. 京ICP备11019930号-18