Module Find_ArmNum Sub Main() Dim r, sum, t, max, min As Integer min = 1 max = 2000 Console.WriteLine("Armstrong Numbers are:- ") While min <= max t = min sum = 0 While t <> 0 r = t Mod 10 sum += Math.Pow(r, 3) t = t \ 10 End While If sum = min Then Console.WriteLine(min.ToString()) End If min += 1 End While Console.ReadLine() End Sub End Module
Hiya! How do you personally think, have your writting skills gone any better lately?
ReplyDeleteWriting skills improve through practice and experience.I am still learning.So its too early to say whether my writing skill have improve or not.But it will surely do one day :)
DeletePlzz upload each programs output ...
ReplyDeletecan u please send same program using for loop?
ReplyDeleteC Sorting Searching Code Examples with samples
ReplyDeleteWhere is output
ReplyDelete