Home work/ Part I
/*
Source code chưa tối ưu, nhưng đã giải quyết được yêu cầu cơ bản của câu hỏi. Các bạn nên xuất bản theo ý mình.Tiếp tục cập nhật!
C Free 5.0
just like before
*/
#include<conio.h>
#include<string.h>
#include<iostream.h>
#include<stdio.h>
void daochuoi(char str[], int n)//cau 1
{
for(int i=n-1;i>=0;i--)
cout<<str[i];
}
int ktdx(char str[],int n)//cau 2
{
for(int i=0;i<=n/2;i++)
if(str[i]==str[n-i-1])
return 0;
return 1;
}
void dem(char str[], int n)//cau 3
{
int dem=0;
for(int i=0;i<n;i++)
{
dem=0;
for(int j=0;j<n;j++)
{
if(str[i]==str[j])
dem++;
}
cout<<"\nKi tu "<<str[i]<<" xuat hien "<<dem<<" lan";
}
}
int main()
{
int n; system("cls");
char str[100];
cout<<"Put string: ";
gets(str);
n=strlen(str);
fflush(stdin);
daochuoi(str,n);
cout<<"\n";
if(ktdx(str,n)==1)
cout<<"............... doi xung";
else
cout<<"............. khong doi xung";
dem(str,n);
getch();
}
______________________________________________________________
SQL and C++ Package : http://www.mediafire.com/?ffot76yn2f6yac0
Mọi thắc mắc liên hệ :
1/minh_duy_passion (để lại tin offline nếu mình ko online)
2/Bình luận trực tiếp trên blog này.
3/Beeline contact: 01993 898 233
1 Nhận xét:
perfect!!
Đăng nhận xét
Đăng ký Đăng Nhận xét [Atom]
<< Trang chủ