Crafting Captivating Paragraphs: Understanding, Structure, and Types

Assalamu’alaikum warahmatullahi wabarakatuh, In this occasion, I will share a little material about paragraphs. Hopefully, it will be beneficial :) Understanding Paragraphs A paragraph, often referred to as an 'alinea,' is a part of a discourse consisting of a set of sentences that refer to one topic (Semi, 1990:55; Arifin, 1993:113; Djajasudarma, 1994:64; Finoza, 2004:149). Paragraph Structure A paragraph consists of a topic sentence and several supporting sentences. The topic sentence contains the main idea or main topic of the paragraph, while the supporting sentences explain or support the main idea of the paragraph. The sentences in the paragraph must be related to each other (Arifin, 1993:121; Finoza, 2004:151). Types of Paragraphs A. Types of Paragraphs According to the Position of the Topic Sentence 1. Deductive Paragraph A deductive paragraph presents the main issue at the beginning of the paragraph. 2. Inductive Paragraph An inductive paragraph presents the main issue

Program Pola Segitiga Rata Kiri dengan Lopping FOR dalam Bahasa C++

Assalamu’alaikum warahmatullahi wabarakatuh,

Kali ini saya akan mambagikan salah satu contoh penggunaan perulangan for yaitu membuat bentuk pola segitiga rata kiri


#include < iostream >
using namespace std;

int main () {
int n;
cout << "Masukan bilangan; ";
cin >> n;

for ( int i=1; i <= n; i++ ) {
for ( int j = 1; j <= i; j++ ) {
cout <<"*";
}
cout<<endl;
}
}

Output Program



Terimakasih telah berkunjung ya sob:)

Comments

Popular posts from this blog

Tips & Trik Menyelesaikan Soal Bahasa Indonesia yang Panjang dengan Cepat

Crafting Captivating Paragraphs: Understanding, Structure, and Types

Contoh Program C++ Mata Pelajaran Kimia ( nilai sel volta dan sifat reaksi )