TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
venus
NA
1
1.7k
exponential to non-exponential value
Jan 19 2013 1:55 AM
private void decrypt_Click(object sender, EventArgs e)
{
v = Convert.ToDouble (txtencrypt.Text);
t= Math.Pow(v, d);
MessageBox.Show(Convert.ToString(t));
MessageBox.Show(""+t.ToString());
MessageBox.Show("" + Convert.ToDecimal(n));
msg = Convert.ToInt16(Math.Pow(v,d) % Convert.ToDouble(n));
txtdecrypt.Text = Convert.ToString(msg);
}
/*
this is the code im working now for rsa decryption. the problem im getting is the pow function
return in exponential format, but i need the non exponential format of output.
can any one please help me to find out solution? */
Reply
Answers (
1
)
create factory design pattern in C#
convert row into column in sql