IP

Jumat, 27 April 2012

PROGRAM C KONDISI MENGGUNAKAN IF


Dibawah ini merupakan contoh program C yang saya compile dengan compiler MICROSOFT VISUAL C++ EXPRESS EDITION, yang ternyata bisa saya compile dengan kata lain program C dapat di compile dengan compiler C++.


#include <stdio.h>
#include <conio.h>
void main ()
{
            int nilai;
            char huruf;
            printf ( " masukkan nilai : " ) ;
            scanf_s ("%d",&nilai) ;
            if ( nilai>=81 && nilai<=100 )
                        huruf = 'A' ;
            else
                        if (nilai>=71 && nilai <=81)
                                    huruf = 'B';
                        else
                                    if (nilai>=61 && nilai <=71)
                                                huruf = 'C';
                                    else
                                                if (nilai>=51 && nilai <=61)
                                                            huruf = 'D';
                                                else
                                                            huruf = 'E';
            printf("Jadi Nilai Huruf yang didapat adalah %c\n", huruf );
            scanf_s("%c", huruf);
            _getch();
}
Output Program, Silahkan Di Click Untuk Memperbesar 



0 komentar:

Posting Komentar

free counters