If, A=1 B=2 C=3 D=4 E=5 F=6 G=7 H=8 I=9 J=10 K=11 L=12 M=13 N=14 O=15 P=16 Q=17 R=18 S=19 T=20 U=21 V=22 W=23 X=24 Y=25 Z=26 Then H+A+R+D+W+O+R+K = 8+1+18+4+23+15+18+11 = 98% K+N+O+W+L+E+D+G+E = 11+14+15+23+12+5+4+7+5 = 96% L+O+V+E=12+15+22+5=54% L+U+C+K = 12+21+3+11 = 47% (None of them makes 100%) ............................... Then what makes 100% Is it Money? ..... No!!!!! Leadership? ...... NO!!!! Every problem has a solution, only if we perhaps change our "ATTITUDE". It is OUR ATTITUDE towards Life and Work that makes OUR Life 100% Successful..
Its good to see Hardwork has more percentage than knowledge. It is the hardwork and persistence that ultimately wins.
100 A(s) make 100% 50 B(s) make 100% 33.3 C(s) make 100% 25 D(s) make 100% 20 E(s) make 100% ... sometimes, you need to think simple. Ted
I'v made a program in C++ to show the point of the words u like : haha....it's very funny Code: #include <iostream.h> int Sumword(char *) ; int main() { const int SIZE = 20; char buffer1[SIZE] ; cout<<"Please Enter a Word"<<endl ; cin>>buffer1 ; cout<<"Sum of the words is : "<<Sumword(buffer1)<<endl ; return 0 ; } int Sumword(char *buffer) { int sum = 0 ; while((*buffer) != '\0') { if(*buffer<='Z'&& *buffer>='A') *buffer+=32 ; sum+= (int)*buffer - 96 ; buffer++ ; } return sum ; }