Learn to Code with Me: Kattis 'Greetings' Problem in Python, C++, and Java

preview_player
Показать описание
Learn to code in the main 3 languages with me! Python 3, C++, and Java.

This is not meant to be an in depth coding lesson. It's more of a "practice along with me" to get more hands on experience. I assume some foundational knowledge of programming, but if not there are plenty of excellent and FREE coding instructors on YouTube to check out.
Рекомендации по теме
Комментарии
Автор

Hello mam, please make a video on how to analyze fluid seepage and heat transfer in a rough fractured rock using Comsol.
Kindly reply as soon as possible.

harisirfan
Автор

I made this code for the problem, what do you think ? :)

#include <iostream>

int main() {

char e = 'e';
std::string i;

std::cin >> i;

std::string str = i;

std::cout << "h" << std::string((str.length() - 2) * 2, e) << "y";


return 0;
}

roro-vpxk