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

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

Assalamu’alaikum warahmatullahi wabarakatuh,

Kali ini saya akan mambagikan contoh dari penerapan C++ di mata pelajaran kimia. Dimana materinya yaitu sel volta. Disini program akan menghasilkan nilai E reaksi dan menentukan sifat reaksi yang terjadi. Semoga bermanfaat :)


Kode Program

  1. #include<iostream>  
  2. using namespace std;  
  3.   
  4. int main(){  
  5.       
  6.     cout <<"Menentukan Nilai dan Sifat Reaksi dari Sel Volta "<<endl;  
  7.     cout<<"**************************************************"<<endl;      
  8.       
  9.     float a,b;  
  10.   
  11.     cout << "Masukan nilai katoda: ";  
  12.     cin>> a;  
  13.     cout << "Masukan nilai anoda:";  
  14.     cin >>b;  
  15.     cout<<"Nilai sel volta = "<<a-b<<endl;  
  16.    
  17.     float c;  
  18.     c=a-b;  
  19.     cout<<"Sifat Reaksi : ";  
  20.     if(c==0){  
  21.         cout<<"Reaksi dalam keadaan setimbang";  
  22.     }  
  23.     else if(c>0){  
  24.         cout<<"Reaksi berlangsung spontan";  
  25.           
  26.     }else{  
  27.         cout<<"Reaksi tidak spontan"<<endl;  
  28.     }  
  29.     cout<<endl;     
  30.       
  31. }
  32.   


Hasil Running Program



Terimakasih sudah berkunjung ;)


Comments

Popular posts from this blog

Tips & Trik Menyelesaikan Soal Bahasa Indonesia yang Panjang dengan Cepat

Crafting Captivating Paragraphs: Understanding, Structure, and Types