我什么也不知道,帮我翻译一下啊

来源:百度知道 编辑:UC知道 时间:2024/09/24 14:05:10
#include <iostream.h>
#include<iomanip.h>
#include <string.h>
void sort( char xh[][20],char xm[][20],float s[]);
void insert( char xh[][20],char xm[][20],float s[]);
void disp(char xh[][20],char xm[][20],float s[]);
void record(char xh[][20],char xm[][20],float s[]);
void del(char xh[][20],char xm[][20],float s[]);

这好像是C语言的变成命令吧.这个怎么翻译啊
全市命令

I don't know anything.

#include <iostream.h>
#include<iomanip.h>
#include <string.h>
包含iostream.h,iomanip.h,string.h三个系统文件,
void sort( char xh[][20],char xm[][20],float s[]);
void insert( char xh[][20],char xm[][20],float s[]);
void disp(char xh[][20],char xm[][20],float s[]);
void record(char xh[][20],char xm[][20],float s[]);
void del(char xh[][20],char xm[][20],float s[]);
定义sort,insert,disp,record,del五个函数括号里面的是函数的参数

这是C语言中方法
void 是方法
sort 排序 加上void 排序方法后面也是一样
insert 添加
加上void 排序方法后面也是一样

还有方法是随便命名的 比如 void aa(char(20)){ } 等等

在C语言的学习软件上打出了不就知道是什么命令了。

这怎么给你翻译呀。