小编kir*_*485的帖子

Windows商店中的非UWP应用程序如何?

此应用程序是可执行文件,而不是UWP,但您可以直接从Windows应用商店安装它.我一直在寻找如何将我制作的可执行应用程序放到Windows应用商店但无法找到的方法.有人可以解释如何做到这一点?

wpf winapi uwp

7
推荐指数
1
解决办法
1327
查看次数

CSS 过渡加速

如何更改 CSS 过渡加速和减速的加速度。

例如,如果我运行此代码:

<style> 
div {
    width: 100px;
    height: 100px;
    background: red;
    transition-duration: 4s;
}

div:hover {
    width: 200px;
    background: blue;
}
</style>
</head>
<body>

<div></div>
Run Code Online (Sandbox Code Playgroud)

它以特定速度加速并以特定速度开始减速。

我怎样才能改变它加速和减速的速度(不是实际的过渡时间,只是加速和减速)

html css

5
推荐指数
1
解决办法
3945
查看次数

Python真/假和在

我试图打印出真的如果有这样的字母/单词则假,如果没有,但是无论我输入什么,它总是如此.

phr1= raw_input("Enter a phrase or paragraph, and this will check if you have those letters/word in ur paragraph: ")
print "You entered: "+phr1
phr2= raw_input("Check if a word/letter exists in the paragraph: ")
phr2 in phr1
if True:
    print "true"
elif False:
    print "false"
input("Press enter")
Run Code Online (Sandbox Code Playgroud)

当我运行代码时:

Enter a phrase or paragraph, and this will check if you have those letters/word in ur paragraph:
hello world
You entered: hello world
Check if a word/letter exists in the paragraph: g …
Run Code Online (Sandbox Code Playgroud)

python python-2.7

0
推荐指数
1
解决办法
1218
查看次数

printf打印错误的char和0

对不起,如果这是一个愚蠢的问题,我是C++的新手.为什么不正确地将所有输入复制到输出?

#include <iostream>
#include <iomanip>
#include <limits>
#include <string>

using namespace std;

int main() {
    int num1;
    long num2;
    long long num3;
    char char1;
    float num4;
    double num5;
    scanf("%d %ld %lld %c %f %lf", &num1, &num2, &num3, &char1, &num4, &num5);
    //input: 211916801 452082285 97592151379235457 p 19856.992 -5279235.721231465
    printf("%d %ld %lld %c %f %lf", num1, num2, &num3, &char1, &num4, &num5);
    //expected output: 211916801 452082285 97592151379235457 p 19856.992 -5279235.721231465
    //actual output: 211916801 452082285 68674564278975280 c 0.000000 0.000000
    system("pause");
    return 0;
}
Run Code Online (Sandbox Code Playgroud)

c++

-1
推荐指数
1
解决办法
138
查看次数

扫描仪不工作?

我是Java的新手,我正在尝试创建一个Java应用程序,它要求你拼写"Java",如果拼写正确,它会输入"yes",但是,它输入"no",我做错了什么:

package quiz;
import java.util.Scanner;
public class quiz {
    public static void main(String[] args) {
        Scanner kirill = new Scanner(System.in);
        System.out.println(kirill.next());
        String kirill2 = "Java";
        if (kirill.equals(kirill2)){
            System.out.println("yes");
        }else{
            System.out.println("no");
        }
        System.out.println(kirill);
        kirill.close();
    }

}
Run Code Online (Sandbox Code Playgroud)

运行代码:Java

Java的

没有

java.util.Scanner [delimiters =\p {javaWhitespace} +] [position = 4] [match valid = true] [need input = false] [source closed = false] [skipped = false] [group separator = \,] [decimal separator =.] [positive prefix =] [negative prefix =\Q-\E] [positive suffix =] [negative suffix =] …

java

-5
推荐指数
1
解决办法
8110
查看次数

标签 统计

c++ ×1

css ×1

html ×1

java ×1

python ×1

python-2.7 ×1

uwp ×1

winapi ×1

wpf ×1