Тёмный

Repetition Control Structures | With C++ 

Sithija Dilshan
Подписаться 1,4 тыс.
Просмотров 119
50% 1

This video focuses on Repetition Control Structures such as While loop, do While loop, for loop, Nested for loop and Sentinel Control loop. These Concepts are explained in Sinhala using C++ Programming Language.
#repetition #controlstructures #loops #while #whileloops #dowhileloop #forloop #for #nestedforloop #sentinel #c #c++

Опубликовано:

 

12 окт 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 3   
@SithijaDilshan-23
@SithijaDilshan-23 2 месяца назад
#include using namespace std; int main() { int type, quantity; float discount, price, total = 0; cout > type; while (type != -1) { total = 0; cout > quantity; if (type == 1) { price = 1000.00; discount = 10; } else if (type == 2) { price = 1600.00; discount = 12; } else if (type == 3) { price = 1400.00; discount = 15; } if (quantity > 3) { total = quantity * price; total = total - (total * discount / 100); } else { total = quantity * price; } cout
@yanithravidu8100
@yanithravidu8100 2 месяца назад
🎉
@SithijaDilshan-23
@SithijaDilshan-23 2 месяца назад
@@yanithravidu8100 😌❤️
Далее
Seja Gentil com os Pequenos Animais 😿
00:20
Просмотров 10 млн
WHY IS THE STACK SO FAST?
13:46
Просмотров 159 тыс.
Array Methods in JavaScript | 17 Useful Methods
42:39
Dependency Injection, The Best Pattern
13:16
Просмотров 845 тыс.
Quicksort: Partitioning an array
4:48
Просмотров 585 тыс.
Understanding and implementing a Hash Table (in C)
24:54
JavaScript Visualized - Closures
11:34
Просмотров 44 тыс.
"Clean" Code, Horrible Performance
22:41
Просмотров 894 тыс.
Subnetting | FLSM Method | Theory & Question | Sinhala
26:51