摘要:
<!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)
#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 阅读全文