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 ( menetukan sifat reaksi dengan deret volta )

Assalamu’alaikum warahmatullahi wabarakatuh,

Kali ini saya akan mambagikan contoh dari penerapan C++ di mata pelajaran kimia. Dimana materinya yaitu sel volta. Berbeda dengan postingan sebelumnya kali ini akan membahas tentang mencari sifat reaksi dengan menggunakan deret volta.


Kode Pogram

  1. #include<iostream>  
  2. using namespace std;  
  3.   
  4. int main(){  
  5. int n,m,p;  
  6.     string senyawa[]= {"Li","K","Ba","Ca","Na","Mg","Al","Mn","H2O","Zn","Cr","Fe","Cd","Co","Ni","Sn","Pb","H","Cu","Hg","Ag","Pt","Au"};  
  7.   
  8.     for(int i=0;i<23;i++){  
  9.     cout<<i<<" = "<<senyawa[i]<<endl;     
  10.     }  
  11.   
  12.     cout<<"Senyawa Reduksi"<<endl;  
  13.     cout<<"Masukan nomor senyawa : "
  14.     cin>>n;     
  15.     cout<<"Senyawa reduksi = "<<senyawa[n]<<endl;       
  16.       
  17.     cout<<"Senyawa Oksidasi"<<endl;  
  18.     cout<<"Masukan nomor senyawa :  ";  
  19.     cin>>m;  
  20.     cout<<"Senyawa oksidasi = "<<senyawa[m]<<endl;      
  21.       
  22.     p=n-m;  
  23.     cout<<"Sifat Reaksi : ";  
  24.     if(p==0){  
  25.         cout<<"Reaksi dalam keadaan setimbang";  
  26.     }  
  27.     else if(p<0){  
  28.         cout<<"Reaksi berlangsung spontan";  
  29.       
  30.     }else{  
  31.         cout<<"Reaksi tidak spontan"<<endl;  
  32.     }         
  33.       
  34. }  


Hasil Running Program



Terimaksih telah berkunjung, semoga bermanfaat.






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 )