8 1 #include<stdio.h> 2 int num[100]; 3 int main() 4 { 5 int x; 6 int cnt = 0; 7 scanf("%d", &x); 8 while(x) { 9 num[++cnt] = x % 10; 10 x = x / 10; 1 ...
分类:
编程语言 时间:
2020-11-24 12:15:10
阅读次数:
9
HDU2030 汉字统计 题目链接 Problem Description 统计给定文本文件中汉字的个数。 Input 输入文件首先包含一个整数n,表示测试实例的个数,然后是n段文本。 Output 对于每一段文本,输出其中的汉字的个数,每个测试实例的输出占一行。 [Hint:]从汉字机内码的特点考 ...
分类:
其他好文 时间:
2020-11-24 12:06:56
阅读次数:
7
安装: npm install vue-highlightable-input --save 引入: import HighlightableInput from "vue-highlightable-input" 页面中使用: <template> <div class="home"> <High ...
分类:
其他好文 时间:
2020-11-23 12:16:03
阅读次数:
4
#department ##input 部门新增或者修改 <form action="/department/saveOrUpdate.do" method="post"> <input type="hidden" name="id" value="${department.id}"> <input ...
分类:
Web程序 时间:
2020-11-23 12:15:32
阅读次数:
11
SHA1 VS RSA: what's the difference between them? Fundamentally different. SHA1 is a hash algorithm, which is a one way function, turning an input of a ...
分类:
其他好文 时间:
2020-11-23 12:09:41
阅读次数:
4
<div class="radio-div"> <div style="width: 100px; float: left;"> <input name="typeName" type="radio" value="1"> <label><em></em><span>集团</span></label ...
分类:
其他好文 时间:
2020-11-23 12:03:56
阅读次数:
5
1 //反选、计算 2 function trCheck(id,name,obj){ 3 if($("input[name='check']").length== $("input[name='check']:checked").length){ 4 $("input[name='all-check ...
分类:
其他好文 时间:
2020-11-21 12:05:15
阅读次数:
4
fromdocximportDocumentfromdocx.enum.styleimportWD_STYLE_TYPEfromdocx.enum.textimportWD_ALIGN_PARAGRAPHimportosclassWord:definit(self):passself.doc=Document()defwrite_word(self):‘‘‘主函数‘‘‘titles=input(‘
分类:
其他好文 时间:
2020-11-21 12:00:03
阅读次数:
7
写密码框的方式和写单行文本框的方式差不多 登录名: 密码: <label>登录名:</label> <input type="text" name="username" maxlength="30"/> <br /> <label>密码:</label> <input type="password" ...
分类:
其他好文 时间:
2020-11-21 11:59:00
阅读次数:
4
需求 1、搜索具体地址,自动填写经纬度,并在地图上标记 2、点击地图上一点,可重新填写经纬度并且标记 代码 在dom新建div渲染地图 <el-form-item label="店铺地址" prop="address"> <el-input v-model="fristForm.address">< ...
分类:
其他好文 时间:
2020-11-20 12:17:30
阅读次数:
27