Welcome, guest! Login / Register - Why register?
Psst.. new poll here.
Psst.. new forums here.
Microsoft is blocking us again (TY IP Reputation!) so just use oauth login instead. :)

Paste

Pasted as C by azazel ( 7 years ago )
int main()
 {
    int i;
	int num ;
	int cube ;
	
    printf("enter number to find cube : ");
    scanf("%d", &num);
    
    for( i=1 ; i<=num ; i++ )
 {
     cube = i*i*i;
    printf("%d",cube);
 }
}

 

Revise this Paste

Your Name: Code Language: