Python2
ruierqwq
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
输出——"Hello,World!"
标准输出是所有语言最基本的东西了(没有之一)。C++语言#include <iostream>using namespace std;int main(){ cout<<"Hello,World"<<endl; return 0;}C语言#include <stdio.h>int main(){ printf("...原创 2019-01-19 15:56:00 · 608 阅读 · 0 评论 -
AC题目A+B的1000种方法
部分内容摘自网络,如有侵权请联系删除首先,标准方法C++#include <iostream>using namespace std;int main(){ int a, b; cin>>a>>b; cout<<a+b<<endl; return 0;}C#include <stdio.h>...原创 2019-06-06 11:22:26 · 733 阅读 · 1 评论
分享