logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

while(scanf("%d",&n),n)和while(scanf("%d",&n)!=EOF)和while(scanf("%d",&n)==1)和while(~scanf("%d",&n)

第一个遇到0结束;第二个和第四个一样,在windows下按ctrl+Z终止,在linux下按ctrl+D终止;第三个是指正确接收对应的变量个数,要是while(scanf("%d%d",&n,&n1)==2)这时候就为2了,在windows下按ctrl+Z终止,在linux下按ctrl+D终止。

vue项目下引入bootstrap没反应

问题描述:vue项目下用本地的bootstrap在index.html中用常规方法引入bootstrap.min.css和js文件失败,但是用bootstrap官网的cdn方式引入却可以原因:在vue项目下使用bootstrap需要配置一下,如下所示<div id="post_...

#bootstrap
字符串匹配

给定一串1和串2,若串2是串1的子串,则返回串2在串1中第一个字母出现的位置,若串2不是串1的子串,返回-1;#include<iostream>#include<stdio.h>#include<string.h>using namespace std;int main(){char str[99];char s

到底了