kt-coding
kt-coding
  • Видео 20
  • Просмотров 394
Inline Functions - C++
Inline Functions - C++
Просмотров: 27

Видео

types of #include - C++
Просмотров 1821 день назад
types of #include - C
Conversion data types in C++
Просмотров 2821 день назад
~crawling in C
basic statistics #python
Просмотров 11Месяц назад
basic statistics #python
Data types C++
Просмотров 42Месяц назад
learning with ChatGPT #datatypes #datatypesinc #c
matplotlib footsteps - #python
Просмотров 27Месяц назад
matplotlib footsteps - #python
add two numbers in c++
Просмотров 51Месяц назад
learning with ChatGPT
clock with JS
Просмотров 47Месяц назад
- learning with ChatGPT
numpy in python
Просмотров 20Месяц назад
learning with AI #colab
Async in JS
Просмотров 192 месяца назад
~ prepared with the help of ChatGPT #learningjavascript
Types of JS functions
Просмотров 122 месяца назад
#learningjavascript - made with the help of ChatGPT,
oop in js
Просмотров 32 месяца назад
asked about oop in chatgpt and tried running them, reading & recording. #learningjavascript #javascript
functions in JavaScript
Просмотров 53 месяца назад
#learnjavascript
Why this channel?
Просмотров 63 месяца назад
a beginner commits in learning/improving programming skills. * channel name changed to kt-coding [Aug 26]
reducer in array js
Просмотров 73 месяца назад
#learningJavaScript
Accept input from user #nodejs
Просмотров 53 месяца назад
Accept input from user #nodejs
BMI calculator in JS
Просмотров 123 месяца назад
BMI calculator in JS
Array Operations in JS
Просмотров 53 месяца назад
Array Operations in JS
String Operations in JS
Просмотров 103 месяца назад
String Operations in JS
Add two numbers in JS
Просмотров 393 месяца назад
Add two numbers in JS

Комментарии

  • @LuizDahoraavida
    @LuizDahoraavida Месяц назад

    you need to use std::wcout for outputting wide chars and strings instead of std::cout

    • @ktcoding7
      @ktcoding7 Месяц назад

      Oh, many thanks for the comment. 😊

  • @justinpaguyavergara8476
    @justinpaguyavergara8476 2 месяца назад

    Are you fucking whispering?

  • @justinpaguyavergara8476
    @justinpaguyavergara8476 2 месяца назад

    Facking voice

  • @ktcoding7
    @ktcoding7 3 месяца назад

    function calcualteBMI(weight, height) { if (weight <= 0 || height <=0) { return 'Please include the +ve numbers greater than 0.' } const bmi = weight / (height * height); return bmi.toFixed(2) } function BMI (weight, height) { const bmi = calcualteBMI(weight, height) let strings; if (bmi <= 19.00) { strings = 'You are underweight.' } else if (bmi >= 19.01 && bmi <=25.00) { strings = 'You are normal person.' } else if (bmi >= 25.01 && bmi <= 40.00){ strings = 'You are little overweight.' } else { strings = 'You are obese.' } return `Your BMI is ${bmi}. ${strings}`; } let weight = 70 let height = 1.75 const bmi = BMI(weight, height); console.log(bmi)