Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- public class CalculQuadrat {
- public static void main(String[] args) {
- int costat = 7;
- int perimetre = costat*4;
- int area = costat*costat;
- System.out.println("Perímetre: " + perimetre);
- System.out.println("Àrea: " + area);
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment