Guest User

Untitled

a guest
Feb 18th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.25 KB | None | 0 0
  1. int creativeNameForAVar, anotherCreativeNameForAVar, keepThinkingOfCreatingNames, areYouTired, soKeepThinking, now;
  2.  
  3.             creativeNameForAVar = int.Parse(Console.ReadLine());
  4.             anotherCreativeNameForAVar = int.Parse(Console.ReadLine());
  5.             keepThinkingOfCreatingNames = int.Parse(Console.ReadLine());
  6.             areYouTired = int.Parse(Console.ReadLine());
  7.             soKeepThinking = int.Parse(Console.ReadLine());
  8.             now = int.Parse(Console.ReadLine());
  9.  
  10.             creativeNameForAVar = creativeNameForAVar * creativeNameForAVar;
  11.             anotherCreativeNameForAVar = anotherCreativeNameForAVar * anotherCreativeNameForAVar;
  12.             keepThinkingOfCreatingNames = keepThinkingOfCreatingNames * keepThinkingOfCreatingNames;
  13.             areYouTired = areYouTired * areYouTired;
  14.             soKeepThinking = soKeepThinking * soKeepThinking;
  15.             now = now * now;
  16.  
  17.             Console.WriteLine("{0}" + creativeNameForAVar);
  18.             Console.WriteLine("{0}" + anotherCreativeNameForAVar);
  19.             Console.WriteLine("{0}" + keepThinkingOfCreatingNames);
  20.             Console.WriteLine("{0}" + areYouTired);
  21.             Console.WriteLine("{0}" + soKeepThinking);
  22.             Console.WriteLine("{0}" + now);
Add Comment
Please, Sign In to add comment