摘要: <!doctype html> <html> <head><title>皮肤库</title></head> <body> <table align="center"> <tr> <td> <div align="center"> <img src="800.png" height="150px"> 阅读全文
posted @ 2023-03-04 17:11 fushuxuan1 阅读(26) 评论(0) 推荐(0)
摘要: <!doctype html><html><head><title>必吃美食</title></head><body><h3 align="center" ><b>必吃美食</b></h3><table align="center" cellpadding="10" style="border:do 阅读全文
posted @ 2023-03-03 20:21 fushuxuan1 阅读(20) 评论(0) 推荐(0)
摘要: <!docpyte html> <html> <head> <title>字体</title> </head> <style> .font h1{ font-family:"楷体"; } .font h3{ font-wiight:30px; font-heigh:30px; font-family 阅读全文
posted @ 2023-02-26 09:26 fushuxuan1 阅读(49) 评论(0) 推荐(0)
摘要: <!doctype html> <html> <read> <title>字体排版</title> </read> <body> <div> <h1>给设计师:字体排版才是网页的最基础</h1> <img src="https://nim-nosdn.netease.im/MjE4MTMzNzE=/ 阅读全文
posted @ 2023-02-25 17:43 fushuxuan1 阅读(39) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cmath> using namespace std; float js(float a){ if(a<1){ return 0.0; } if(a<=70){ return 0.1; } float b=a/70; return ceil 阅读全文
posted @ 2023-02-03 17:59 fushuxuan1 阅读(20) 评论(0) 推荐(0)
摘要: #include <iostream> #include <cmath> using namespace std; int main(){ long long a,b; cin>>a>>b; int n=1; for(int i=0;i<b;i++){ n=n*a; n=n%7; } if(n==1 阅读全文
posted @ 2023-02-02 17:56 fushuxuan1 阅读(23) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip> using namespace std; int main(){ int n; cin>>n; int m; double x; for(int i=0;i<n;i++){ cin>>m; x=x+m; } cout<<f 阅读全文
posted @ 2023-02-02 17:55 fushuxuan1 阅读(50) 评论(0) 推荐(0)
摘要: #include <iostream> #include <iomanip> using namespace std; int main(){ int n; cin>>n; int m; int sum; double x; for(int i=0;i<n;i++){ cin>>m; x=x+m; 阅读全文
posted @ 2023-02-02 17:09 fushuxuan1 阅读(61) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2023-02-02 16:49 fushuxuan1 阅读(27) 评论(0) 推荐(0)
摘要: 统计满足条件的4位数 #include <iostream> using namespace std; int tj(int m){ int a=m%10; int b=m%100/10; int c=m%1000/100; int d=m/1000; if(a-b-c-d>0){ return 1; }else{ re 阅读全文
posted @ 2023-02-01 18:02 fushuxuan1 阅读(61) 评论(0) 推荐(0)