Advertisement
mmayoub

For-Exercise 01

Jun 27th, 2017
161
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.72 KB | None | 0 0
  1. package class170622;
  2.  
  3. import java.util.Scanner;
  4.  
  5. public class For01 {
  6.  
  7.     public static void main(String[] args) {
  8.         /*
  9.          * כתוב תוכנית הקולטת מספר ומדפיסה עבור כל מספר את ערכו ואת ערכו הריבועי
  10.          */
  11.         // create a scanner for input data
  12.         Scanner s = new Scanner(System.in);
  13.        
  14.         // ask user for input data
  15.         System.out.println("Enter integer value: ");
  16.        
  17.         // get and save input data: integer number
  18.         int n = s.nextInt();
  19.  
  20.         // close the scanner
  21.         s.close();
  22.  
  23.         // for each number from 1 to n
  24.         for (int i = 1; i <= n; i += 1) {
  25.             // print to screen the number and its square number
  26.             System.out.printf("n=%d , n^2=%d\n", i, i * i);
  27.         }
  28.  
  29.     }
  30.  
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement