码迷,mamicode.com
首页 >  
搜索关键字:crystal print control控件    ( 43728个结果
python中break语句
1、 aaa = "123" answer = input("please input the answer:") while True: if answer == aaa: break answer = input("please input the answer,again:") print(" ...
分类:编程语言   时间:2021-02-18 13:38:19    阅读次数:0
高斯消元解异或线性方程组(高斯消元,模板)
题意 $a_$以及$b_i$都是$0/1$ 方法 异或运算可以看成是不进位的加法,因此直接高斯消元即可 代码 #include <iostream> #include <cstdio> #include <cstring> using namespace std; const int N = 110 ...
分类:其他好文   时间:2021-02-18 13:19:39    阅读次数:0
springboot 整合 listener
一:用idea 创建 springboot 项目: 详情请参考:《使用IDEA创建一个springboot项目》 二:具体代码内容: 1:sringboot 整合 listener 方式一: 1:查看效果 1:FirstListener 2:ListenerApplication 3: pom.xm ...
分类:编程语言   时间:2021-02-18 13:18:41    阅读次数:0
Python : provable(变量)
变量的意义:存储数据在内存中,用来在后边进行调用 定义一个变量: name = 'Lizi' 上述代码中,变量名为name,变量值为Lizi 调用变量: print('My name is' ,name) 执行结果为 My name is Lizi 变量的命名规范: 变量名只能是字母,数字或下划线的 ...
分类:编程语言   时间:2021-02-18 13:01:14    阅读次数:0
for循环求n个数阶乘的和
#include<stdio.h>int main() { int ret = 1; int n = 0; int i = 0; int sum = 0; printf("请输入:\n"); scanf("%d", &n);\\输入n的值 for (i = 1; i <= n; i++) { ret ...
分类:其他好文   时间:2021-02-17 15:11:38    阅读次数:0
输出函数print
1】print()函数可以输出的内容 1.数字 2.字符串 #字符串需要加单引号或者双引号,加字符串的目的是为了让电脑直接输出字符串中的内容 3.表达式 2】print()函数将内容输出的目的地 1.显示器 2.文件夹 ex:将数据输出至文件中 fp=open('D:/text.txt','a+') ...
分类:其他好文   时间:2021-02-17 14:59:37    阅读次数:0
按序打印
1 题目 我们提供了一个类: public class Foo { public void first() { print("first"); } public void second() { print("second"); } public void third() { print("third ...
分类:其他好文   时间:2021-02-17 14:51:27    阅读次数:0
JavaSE-统计字符在字符串中出现的次数
/** * 方法一:使用indexOf和subString方法,循环判断并截取 */ public static void getStrCount1(String str, String con) { int count = 0; while (str.indexOf(con) >= 0) { // ...
分类:编程语言   时间:2021-02-17 14:46:16    阅读次数:0
Codeforces Round #701 (Div. 2) A~C 题解
写在前边 链接:Codeforces Round #701 (Div. 2) 数学场,题目描述简单粗暴,思路很妙,代码短的不行,都是好神奇的一些题目。 A. Add and Divide 链接:A题链接 题目大意: 给定两个正整数,我们可以进行两个操作: \(a = \lfloor \frac{a} ...
分类:其他好文   时间:2021-02-17 14:39:22    阅读次数:0
vscode----vue模板--用户代码片段--快捷
vue.json { "Print to console": { "prefix": "vue", "body": [ "<template>", " <div>$0</div>", "</template>", "", "<script>", "export default {", " data ...
分类:其他好文   时间:2021-02-17 14:21:41    阅读次数:0
43728条   上一页 1 ... 52 53 54 55 56 ... 4373 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!