D A Rosi Arsida WardaniApr 25, 20216 min readSekuen | Workshop 3Algoritma mencari titik tengah sebuah garis yang ujung titiknya yaitu A(x1, y1) dan B(x2, y2) Jawab : Gambar : Algoritma titik_tengah...
D A Rosi Arsida WardaniApr 25, 20212 min readI/O Operator Overloading dan file | Workshop 2 Program memasukkan jam, menit, detik #include<iostream> using namespace std; class waktu{ friend ostream& operator<<(ostream&, const...
D A Rosi Arsida WardaniApr 25, 20217 min readWorkshop 1Program biodata #include<iostream> using namespace std; class bio{ public : void isi_bio(){ nama = "D.A.Rosi Arsida Wardani";...
D A Rosi Arsida WardaniApr 25, 20211 min readKomputer dan Bahasa PemrogramanKomputer Komputer adalah suatu mesin yang melakukan tugas yang sederhana berdasarkan instruksi-instruksi tertentu. Perintah-perintah...
D A Rosi Arsida WardaniApr 25, 20211 min readProgram Developments StepsUnderstand the problem at hand. Identify what are the inputs and outputs required. Use a flowchart or algorithmic approach to define...
D A Rosi Arsida WardaniApr 25, 20211 min readC ++ Program and Algorithm | Separate integer numbers less than 1000 into their componentsAnalysis : To get the number hundreds, the formula is : hundreds = number/100 To get the number tens, the formula is : tens = (number %...
D A Rosi Arsida WardaniMar 31, 20211 min readSyntax and Logical ErrorSyntax Error Syntax errors are errors in the source code which are related to the syntax of the language. Syntax errors are detected by...
D A Rosi Arsida WardaniMar 31, 20212 min readProgramming and AlgorithmExample of Algorithm in Real Life Washing clothes Analysis : Problem : Algorithm of washing clothes with automatic washing machine...
D A Rosi Arsida WardaniMar 31, 20211 min readIntroduction to AlgorithmsProblem Solving What is Programming? Programming is a process of problem-solving. There are three techniques in problem-solving: Analyze...
D A Rosi Arsida WardaniMar 16, 20211 min readTemperatur Convertion in C++Do you want to convert Celcius to any kind of temperature that you like with the C++ program but don't know the exact way to do it? Then,...
D A Rosi Arsida WardaniMar 15, 20212 min readHow to Write Our BIO in C++When you in a new environment, meeting new people, or something like that. People must be wondering "who are you?". So the first thing...
D A Rosi Arsida WardaniMar 14, 20213 min readHello, World!The Introduction Words to Programming image : Program "Hello, World!" in C++ "Hello, World!" is the first program one usually writes when...