Розмір відео: 1280 X 720853 X 480640 X 360
Показувати елементи керування програвачем
Автоматичне відтворення
Автоповтор
❤🎉
/*Nama : Umi Maghfiroh Kelas: 2D NIM : 22040109*/#include #include #include #include using namespace std;void gotoxy(int x, int y){ COORD coord; coord.X = x; coord.Y = y; SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);}struct data_diri { string nama; int nim; string kelas;};void bubbleSort(float arr[], int n){ for (int i = 0; i < n - 1; i++) { for (int j = 0; j < n - i - 1; j++) { if (arr[j] > arr[j + 1]) { float temp = arr[j]; arr[j] = arr[j + 1]; arr[j + 1] = temp; } } }}int binarySearch(float arr[], int n, float key){ int left = 0; int right = n - 1; while (left kelas; gotoxy(0, 3); cout
❤🎉
/*Nama : Umi Maghfiroh
Kelas: 2D
NIM : 22040109*/
#include
#include
#include
#include
using namespace std;
void gotoxy(int x, int y)
{
COORD coord;
coord.X = x;
coord.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), coord);
}
struct data_diri {
string nama;
int nim;
string kelas;
};
void bubbleSort(float arr[], int n)
{
for (int i = 0; i < n - 1; i++) {
for (int j = 0; j < n - i - 1; j++) {
if (arr[j] > arr[j + 1]) {
float temp = arr[j];
arr[j] = arr[j + 1];
arr[j + 1] = temp;
}
}
}
}
int binarySearch(float arr[], int n, float key)
{
int left = 0;
int right = n - 1;
while (left kelas;
gotoxy(0, 3); cout