摘要: #include <iostream> using namespace std; int main() { cout << "you two mun is:" <<endl; //输出内容 int mun1 = 0 , mun2 = 0; //定义变量 cin >> mun1 >> mun2; // 阅读全文
posted @ 2021-08-24 19:33 不学会py不改名 阅读(37) 评论(0) 推荐(0)
摘要: #include <iostream> using namespace std; int main() { /*int i = 10; while (i) { cout << "i value is" << i; i++;//= i = i+1; }*/ /* int count = 0,i = 0 阅读全文
posted @ 2021-08-24 19:26 不学会py不改名 阅读(43) 评论(0) 推荐(0)
摘要: import requests from lxml import etree url = "http://www.7k7k.com/" headers = { "User-Agent": "Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:91.0) Gecko/ 阅读全文
posted @ 2021-08-24 19:15 不学会py不改名 阅读(124) 评论(0) 推荐(0)
摘要: 这是今天学到的代码#include <iostream>using namespace std;/*宏常量*///#define 常量名 值#define day 18//常量是定义完不能修改的int main(){ // 屏幕里输出 hello world /*多行注释能换行*/ //不能换行 c 阅读全文
posted @ 2021-08-22 15:06 不学会py不改名 阅读(40) 评论(0) 推荐(0)