- install
gh-pages
package from npm
npm install gh-pages --save-dev
- add these 2 scripts in
package.json
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
- add homepage in
package.json
aftername
gh-pages
package from npmnpm install gh-pages --save-dev
package.json
"predeploy": "npm run build",
"deploy": "gh-pages -d dist"
package.json
after name
Help Ukraine by attacking Russian web sites. Good load testing training.
Tools:
// In Java | |
import java.util.*; | |
class Question1 { | |
// Please try not to change anything in this method. | |
public static void main(String[] args) { | |
int[] numbers = new int[15]; | |
addRandomNumbers(numbers); | |
System.out.println(Arrays.toString(numbers)); | |
System.out.println(findPairsByList(numbers, 10)); |
/* | |
* Created by IntelliJ IDEA Ultimate, 2020 | |
* User: dbc2201 | |
* Date: 16/01/20 | |
* Time: 8:52 AM | |
*/ | |
package recursion; | |
import java.math.BigInteger; |
#include<stdio.h> | |
int main(void){ | |
int a = 0; | |
int b = 0; | |
int c = 0; | |
printf("please enter the number:\n"); | |
scanf("%d", &a); | |
printf("please enter the number:\n"); | |
scanf("%d", &b); | |
c = a > b ? a : b; |
#include<stdio.h> | |
int main(void){ | |
int inputNumber = 0; | |
printf("please enter number:"); | |
scanf("%d", &inputNumber); | |
(inputNumber % 2 == 0) ? printf("number is even", inputNumber) : printf("number is odd", inputNumber); | |
return 0; | |
} |
#include<stdio.h> | |
int main(void){ | |
int a = 0; | |
int b = 0; | |
int c = 0; | |
printf("please enter the value of a:\n"); | |
scanf("%d", &a); | |
printf("please enter the value of b:\n"); | |
scanf("%d", &b); | |
printf("please enter the value of c:\n"); |
#include<stdio.h> | |
int main(void){ | |
float fahrenheit = 0.0f; | |
float celsius = 0.0f; | |
printf("please enter the value of fahrenheit :\n"); | |
scanf("%f", &fahrenheit); | |
celsius = (fahrenheit - 32) * 5 / 9; | |
printf("Fahrenheit To Celsius is = %.2f\n", celsius); | |
return 0; | |
} |
#include<stdio.h> | |
int main (void) | |
{ | |
float kilometre = 0.0f; | |
printf("please enter the value of kilometre:\n"); | |
scanf("%f", &kilometre); | |
float metre = 0.0f; | |
float feet = 0.0f; | |
float centimetre = 0.0f; | |
metre = kilometre * 1000.0f; |
#include<stdio.h> | |
int main(void){ | |
float basic_salary = 0.0f; | |
float hra = 0.0f; | |
float ta = 0.0f; | |
printf("please enter your basic salary:\n"); | |
scanf("%f", &basic_salary); | |
hra = (40.0f / 100.0f) * basic_salary; | |
ta = (20.0f / 100.0f) * basic_salary; | |
printf("Basic salary:%.2f\n", basic_salary); |