Advertisement
Guest User

Untitled

a guest
Aug 28th, 2014
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. public class Aulas {
  2.     public int problema03(int x) {
  3.         int fx = 3 * (x * x) + 2 * x + 7;
  4.         return fx;
  5.     }
  6.  
  7.     public static void main(String[] args) {
  8.         Aulas aulas = new Aulas();
  9.         aulas.problema03(2);
  10.     }
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement