pada kali ini saya akan share coding mencari nim nama dan umur
lihat gambar beriku ini
jika anda tertatik silahkan copy paste saja coding di bawah ini :)
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
#include <string>
using namespace std;
struct node
{
int nim;
int umur;
string nama;
struct node *next;
};
main()
{
struct node *n, *t, *h, *t1;
char jawab = 'y';
n = t = h = NULL;
while (jawab != 'n')
{
n=new node;
n -> next = NULL;
cout << "Input NIM : ";
cin >> n -> nim;
cout << "Input UMUR : ";
cin >> n -> umur;
cout << "Input NAMA: ";
cin >> n -> nama;
if (h == NULL)
{
t = n;
h = n;
}
else
{
t -> next = n;
t = n;
}
cout << "Input lagi? (y/n) : ";
cin >> jawab;
cout << "\n";
}
cout<<"\n"<<"NIM"<<"\t"<<"Umur"<<"\t"<<"Nama"<<"\n";
t1=h;
while (t1 -> next != NULL)
{
cout << t1 -> nim <<"\t"<< t1 -> umur <<"\t"<< t1 -> nama<<"\n";
t1 = t1 -> next;
}
cout << t1 -> nim <<"\t"<< t1 -> umur <<"\t"<< t1 -> nama << "\t";
cout << "\n" ;
getch();
}
sekian dan terima kasih :)
lihat gambar beriku ini
jika anda tertatik silahkan copy paste saja coding di bawah ini :)
#include <iostream.h>
#include <conio.h>
#include <stdio.h>
#include <string>
using namespace std;
struct node
{
int nim;
int umur;
string nama;
struct node *next;
};
main()
{
struct node *n, *t, *h, *t1;
char jawab = 'y';
n = t = h = NULL;
while (jawab != 'n')
{
n=new node;
n -> next = NULL;
cout << "Input NIM : ";
cin >> n -> nim;
cout << "Input UMUR : ";
cin >> n -> umur;
cout << "Input NAMA: ";
cin >> n -> nama;
if (h == NULL)
{
t = n;
h = n;
}
else
{
t -> next = n;
t = n;
}
cout << "Input lagi? (y/n) : ";
cin >> jawab;
cout << "\n";
}
cout<<"\n"<<"NIM"<<"\t"<<"Umur"<<"\t"<<"Nama"<<"\n";
t1=h;
while (t1 -> next != NULL)
{
cout << t1 -> nim <<"\t"<< t1 -> umur <<"\t"<< t1 -> nama<<"\n";
t1 = t1 -> next;
}
cout << t1 -> nim <<"\t"<< t1 -> umur <<"\t"<< t1 -> nama << "\t";
cout << "\n" ;
getch();
}
sekian dan terima kasih :)
Jangan Lupa commen nya dan kunjungi terus blog saya http://berbagitips46.blogspot.com atau http://sahatpg.wordpress.com/
supaya saya lebih giat lagi untuk mencari aplikasi-aplikasi yang
terbaru atau anda bisa request software yang anda ingin kan siapa tau
saya bisa bantu cari
sekian terimakasih semoga bermanfaat ^_^
sekian terimakasih semoga bermanfaat ^_^
0 comments:
Post a Comment