当前位置: 首页 > news >正文

网站logo在线设计附近推广用哪些软件

网站logo在线设计,附近推广用哪些软件,wordpress更新失败,路桥贝斯特做网站好吗除了正常进制转换#xff0c;还可以输入、输出使用不同的数字符号#xff0c;达成对数值进行加密的效果 点我下载APK安装包 使用unity开发。新建一个c#代码文件#xff0c;把代码覆盖进去#xff0c;再把代码文件添加给main camera即可。 using System.Collections; usin…除了正常进制转换还可以输入、输出使用不同的数字符号达成对数值进行加密的效果 点我下载APK安装包 使用unity开发。新建一个c#代码文件把代码覆盖进去再把代码文件添加给main camera即可。 using System.Collections; using System.Collections.Generic; using UnityEngine;public class NewBehaviourScript : MonoBehaviour {// Start is called before the first frame updatevoid Start(){}// Update is called once per framevoid Update(){}string injinzhifuhao 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ;string injinzhi 10;string intext 12345;string outjinzhifuhao 0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ;string outjinzhi1 2;string outtext1 ;private void OnGUI(){float rect_x Screen.width * 0.1f;float rect_y Screen.height * 0.1f;float rect_w Screen.width * 0.8f;float rect_h Screen.height * 0.05f;GUIStyle style_l GUI.skin.label;style_l.normal.textColor Color.white;style_l.fontSize (int)(rect_h * 0.8);style_l.alignment TextAnchor.MiddleCenter;GUIStyle style_t GUI.skin.textField;style_t.normal.textColor Color.white;style_t.fontSize (int)(rect_h * 0.8);GUIStyle style_b GUI.skin.button;style_b.fontSize (int)(rect_h * 0.8);style_b.alignment TextAnchor.MiddleCenter;GUI.Label(new Rect(rect_x, rect_y, rect_w, rect_h), 进制符号, style_l);rect_y rect_h;injinzhifuhao GUI.TextField(new Rect(rect_x, rect_y, rect_w, rect_h), injinzhifuhao, style_t);rect_y rect_h;GUI.Label(new Rect(rect_x, rect_y, rect_w, rect_h), 输入的是几进制, style_l);rect_y rect_h;injinzhi GUI.TextField(new Rect(rect_x, rect_y, rect_w, rect_h), injinzhi, style_t);rect_y rect_h;GUI.Label(new Rect(rect_x, rect_y, rect_w, rect_h), 数值, style_l);rect_y rect_h;intext GUI.TextField(new Rect(rect_x, rect_y, rect_w, rect_h), intext, style_t);rect_y rect_h * 2;bool butt GUI.Button(new Rect(rect_x, rect_y, rect_w, rect_h), 转换, style_b);rect_y rect_h * 2;GUI.Label(new Rect(rect_x, rect_y, rect_w, rect_h), 转换后的进制符号, style_l);rect_y rect_h;outjinzhifuhao GUI.TextField(new Rect(rect_x, rect_y, rect_w, rect_h), outjinzhifuhao, style_t);rect_y rect_h;GUI.Label(new Rect(rect_x, rect_y, rect_w, rect_h), 转换成几进制, style_l);rect_y rect_h;outjinzhi1 GUI.TextField(new Rect(rect_x, rect_y, rect_w, rect_h), outjinzhi1, style_t);rect_y rect_h;GUI.Label(new Rect(rect_x, rect_y, rect_w, rect_h), 数值, style_l);rect_y rect_h;outtext1 GUI.TextField(new Rect(rect_x, rect_y, rect_w, rect_h), outtext1, style_t);if (butt){int injinzhi_;int outjinzhi1_;// - - - - - - - - - - - - - - - 纠错 - - - - - - - - - - - - - - - if (injinzhifuhao.Length 0) { injinzhifuhao 不能没有进制符号; return; }if (int.TryParse(injinzhi, out injinzhi_) false) { injinzhi 无法识别为数字 injinzhi; return; }if (injinzhi_ 0) { injinzhi 必须是大于零的数字 injinzhi; return; }if (int.TryParse(outjinzhi1, out outjinzhi1_) false) { outjinzhi1 无法识别为数字 outjinzhi1; return; }if (outjinzhi1_ 0) { outjinzhi1 必须是大于零的数字 outjinzhi1; return; }if (injinzhi_ injinzhifuhao.Length) { injinzhi 进制符号太少无法表示如此大的进制 injinzhi; return; }foreach (var item in intext){bool t false;for (int i 0; i injinzhi_; i){if (injinzhifuhao[i] item) { t true; break; }}if (t false) { intext 符号 item 不在进制范围的符号中 intext; return; }}// - - - - - - - - - - - - - - - 转换 - - - - - - - - - - - - - - - // 用int[]保存intext的每个数字;int[]的元素数量是intext.Length。int[] jinzhinum new int[intext.Length];for (int i 0; i intext.Length; i){for (int j 0; j injinzhifuhao.Length; j){if (intext[i] injinzhifuhao[j]){jinzhinum[i] j;}}}// 对输入值减一同时输出值加一。Listint outnum new Listint();outnum.Add(0);while (SubOne(ref jinzhinum, injinzhi_)){AddOne(ref outnum, outjinzhi1_);}// 数字转换成符号outtext1 ;for (int i outnum.Count - 1; i 0; i--){int t outnum[i];string tt outjinzhifuhao[t].ToString();outtext1 tt outtext1;}}bool SubOne(ref int[] a, int jinzhi){if (a[a.Length - 1] 0) // 个位数减一{a[a.Length - 1]--;return true;}else // 需要借位{for (int i a.Length - 2; i 0; i--){if (a[i] 0){a[i]--;for (int j i 1; j a.Length - 1; j){a[j] jinzhi - 1;}return true;}}return false; // 传入的数为零无法继续减一}}void AddOne(ref Listint a, int jinzhi){a[a.Count - 1];for (int i a.Count - 1; i 0; i--){if (a[i] jinzhi){a[i] 0;if (i ! 0){a[i - 1];}else{a.Insert(0, 1);return;}}else{return;}}}} }
http://www.w-s-a.com/news/796439/

相关文章:

  • 花都区pc端网站建设画册设计多少钱一页
  • 国外买域名的网站廊坊网站制作网页
  • 抚顺市城市建设档案馆网站制作网页时经常用的一种动态位图格式是
  • 公司网站站群是什么运营网站
  • 昆明网站建设大全安徽教育机构网站建设
  • 广州网站排名怎么优化中华衣柜网
  • 怎样围绕网站专题发展来做ppt城乡住建局官网
  • 安卓手机app制作关键词优化公司
  • 江苏固茗建设有限公司网站深圳网站建设深圳网
  • 高性能网站建设指南北京城乡建设官方网站
  • 企业网站找谁做做淘宝相关网站
  • 商业网站网站建设wordpress关闭前端公共库
  • 打开山东城市建设职业学院网站下载了wordpress后
  • 四川网站建设设计城乡建设网站证件查询系统
  • 企业邮箱哪里买栾城seo整站排名
  • 长沙网站建设zh68网页制作技术实训报告
  • 电商网站的功能手机广告设计与制作软件
  • 做网站前端需要编程基础吗杭州市住房和城乡建设局
  • 网站开发一般学多久网站建设投标方案
  • 北京网站建设报价表制作短视频的软件有哪些
  • 长沙企业网站开发西安建设公司网站
  • 做图的兼职网站网站开发用了哪些知识要点
  • php网站怎么做静态化微慕wordpress插件
  • 电商营业执照wordpress利于seo
  • 那些网站主做玄幻小说营销策略都有哪些方面
  • 同一源代码再建设一个网站建立网站免费
  • 网站更换服务器影响做seo必须有网站吗
  • 免费网页模板网站php微信微网站怎么做
  • 网站的优点和缺点腾讯企点是什么软件
  • 谷歌英文网站推广网页设计好看的网站