new tasks

This commit is contained in:
Ingy döt Net 2013-04-09 00:46:50 -07:00
parent 2a4d27cea0
commit 80737d5a6a
1194 changed files with 15353 additions and 1 deletions

View file

@ -0,0 +1 @@
integer, dimension (10, 10, 10) :: a

View file

@ -0,0 +1 @@
integer, dimension (:), allocatable :: a

View file

@ -0,0 +1 @@
integer, dimension (:, :), allocatable :: a

View file

@ -0,0 +1 @@
allocate (a (10))

View file

@ -0,0 +1 @@
allocate (a (10, 10))

View file

@ -0,0 +1 @@
deallocate (a)

View file

@ -0,0 +1 @@
integer, dimension (10) :: a = (/1, 2, 3, 4, 5, 6, 7, 8, 9, 10/)

View file

@ -0,0 +1,2 @@
integer :: i
integer, dimension (10) :: a = (/(i * i, i = 1, 10)/)

View file

@ -0,0 +1 @@
integer, dimension (10) :: a = 0

View file

@ -0,0 +1,2 @@
integer :: i
integer, dimension (10, 10) :: a = reshape ((/(i * i, i = 1, 100)/), (/10, 10/))

View file

@ -0,0 +1 @@
integer :: a (10)

View file

@ -0,0 +1,2 @@
integer :: i
integer, dimension (10), parameter :: a = (/(i * i, i = 1, 10)/)

View file

@ -0,0 +1 @@
a (1) = 1

View file

@ -0,0 +1 @@
a (1, 1) = 1

View file

@ -0,0 +1 @@
a = (/1, 2, 3, 4, 5, 6, 7, 8, 9, 10/)

View file

@ -0,0 +1 @@
a = (/(i * i, i = 1, 10)/)

View file

@ -0,0 +1 @@
a = reshape ((/(i * i, i = 1, 100)/), (/10, 10/))

View file

@ -0,0 +1 @@
a = 0

View file

@ -0,0 +1 @@
a (:) = (/1, 2, 3, 4, 5, 6, 7, 8, 9, 10/)

View file

@ -0,0 +1 @@
a (1 : 5) = (/1, 2, 3, 4, 5/)

View file

@ -0,0 +1 @@
a (: 5) = (/1, 2, 3, 4, 5/)

View file

@ -0,0 +1 @@
integer, dimension (10) :: a

View file

@ -0,0 +1 @@
a (6 :) = (/1, 2, 3, 4, 5/)

View file

@ -0,0 +1 @@
a (1 : 5) = (/(i * i, i = 1, 10)/)

View file

@ -0,0 +1 @@
a (1 : 5)= 0

View file

@ -0,0 +1 @@
a (1, :)= (/(i * i, i = 1, 10)/)

View file

@ -0,0 +1 @@
a (1 : 5, 1)= (/(i * i, i = 1, 5)/)

View file

@ -0,0 +1 @@
i = a (1)

View file

@ -0,0 +1 @@
a = b (1 : 10)

View file

@ -0,0 +1 @@
i = size (a)

View file

@ -0,0 +1 @@
i = size (a, 1)

View file

@ -0,0 +1 @@
i_min = lbound (a)

View file

@ -0,0 +1 @@
integer, dimension (10) :: a

View file

@ -0,0 +1 @@
i_max = ubound (a)

View file

@ -0,0 +1 @@
a = ubound (b)

View file

@ -0,0 +1 @@
integer, dimension (1 : 10) :: a

View file

@ -0,0 +1 @@
integer, dimension (0 : 9) :: a

View file

@ -0,0 +1 @@
real, dimension (10) :: a

View file

@ -0,0 +1 @@
type (my_type), dimension (10) :: a

View file

@ -0,0 +1 @@
integer, dimension (10, 10) :: a

View file

@ -0,0 +1 @@
integer a (10)