Advertisement
je0v4ne

Untitled

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