求助
本帖最后由 何哈哈哈 于 2021-11-21 18:48 编辑几个人
3
输入第7个人的学号/100
201.07
输入第8个人的学号/100
201. 08
输入第9个人的学号/100
201.09
单链表初始为。
201. 070000 201. 080000 201. 090000
删除我的学号后:
201.070000 201.090000
单链表,要求中文中的数字可以一直加,加到30,
#include <stdio.h>
int main(void)
{
printf("hello, world !\n") ;
} 2 楼是C语言版的 , 下面是C ++ 版的
#include <iostream>
using namespace std;
int main()
{
return 0;
} 3 楼的是 C++ 版本,下面的是 Python 的def main():
print("Hello World!")
if __name__ == "__main__":
main() java 版本的
class main {
public static void main(String[] args) {
System.out.print("hello world!\n");
}
}
网页版本的
<!DOCTYPE >
<html>
<head>
<title>网页版本的</title>
</head>
<body>
<p>Hello World!!</p>
</body>
</html>
页:
[1]