Lompat ke konten Lompat ke sidebar Lompat ke footer

PROGRAM C PERULANGAN - Program untuk menampilkan n huruf kecil dan huruf besar pertama


Contoh Kasus : 

Buatlah program untuk menampilkan n huruf kecil dan huruf besar pertama.
Masukan : Sebuah angka bulat
Keluaran : n deret huruf kecil dan huruf besar pertama

Test Case

Masukan :
5
Keluaran :
a b c d e
A B C D E

Program 1

[code hl="1, 4, 7"] #include<stdio.h> int main() { int i; int byk,huruf,kap; kap=97; huruf=65; scanf("%d",&byk); for(i=0;i<byk;i++){ printf("%c ",kap); kap++; } printf("n"); for(i=0;i<byk;i++){ printf("%c ",huruf); huruf++; } return 0; } [/code]

Program 2

[code hl="1, 4, 7"] #include<stdio.h> void main() { int i,k,angka,hurufB,hurufk; hurufB=97; hurufk=65; scanf("%d",&angka); i = 1; while(i<=angka) { printf("%c",hurufB); hurufB++; i++; } printf("n"); k = 1; while(k<=angka) { printf("%c",hurufk); hurufk++; k++; } } [/code]

Program 3

[code hl="1, 4, 7"] #include <stdio.h> int main() { int n; scanf("%d", &n); for (int i = 0; i < n; i++) { printf("%c ", 97 + i); } printf("n"); for (int i = 0; i < n; i++) { printf("%c ", 65 + i); } return 0; } [/code]

Program 4

[code hl="1, 4, 7"] #include<stdio.h> int main() { int N, lowCase = 97, uppCase = 65, i=0, j=0; printf("N : ");scanf("%d", &N); //cetak lowercase while(i<N) { printf("%c ", lowCase); lowCase++; i++; } printf("n"); //cetak uppercase while(j<N) { printf("%c ", uppCase); uppCase++; j++; } printf("nn"); } [/code]

Program 5

[code hl="1, 4, 7"] #include<stdio.h> int main(){ int i,j,m; scanf("%d", &m); i =1; while(i<=m){ printf("%c ",96+i); i++; } printf("n"); j =1; while(j<=m){ printf("%c ",64+j); j++; } return 0; } [/code]



Bona Pasogit
Bona Pasogit Content Creator, Video Creator and Writer

Posting Komentar untuk "PROGRAM C PERULANGAN - Program untuk menampilkan n huruf kecil dan huruf besar pertama"

close