编写一个程序,能输出下面2行文字。
I have a computer.
I study the C languge.
要具体步骤。
编写一个程序,能输出下面2行文字。
I have a computer.
I study the C languge.
要具体步骤。
<html>
<head>
<script language="javascript">
document.write("I have a computer.");
document.write("I study the C languge.");
</script>
</head>
保存为a.html
</body>
</html>
你学C语言的吧,下面的代码也许行
#include"stdio.h"
#include"string.h"
#define M 30
main()
{
char ch[M],str[M];
printf("input the words:");
gets(ch);
printf("input the words:") ;
gets(str);
puts(ch);
printf("\n");
puts(str);
}