Advertisement
Guest User

Untitled

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