Page 102 - IP
P. 102

private void jButton1ActionPerformed(java.awt.event.ActionEvent evt) {


               double a,b,c;

                       a=Double.parseDouble(jTextField1.getText());


                       b=Double.parseDouble(jTextField2.getText());

                       c=Math.pow(a,b);


                       jTextField3.setText(Double.toString(c));






























               Q11. To count number of vowels in a given string.
   97   98   99   100   101   102   103   104   105   106   107