谁帮我做个编程题

来源:百度知道 编辑:UC知道 时间:2024/09/22 16:44:49
编程题
编写完整程序,在屏幕上输出如下结果
hello,this is an example

#include<stdio.h>
void main()
{
printf("hello,this is an example");
}

偶是Pascal的,程序如下
program ex
begin
writeln('hello,this is example');
end.

.model small
.stack
.data
HINT db "hello,this is an example",'$'
.code
.startup
mov ah, 9
mov dx, offset HINT
int 21h
.exit
end