#include<conio.h> #include<stdio.h> int main() { int i=1,cube=0; while(i<=5) { cube=cube+(i*i*i); i++; } printf("\nThe answer is: %d",cube); }
Engineers Burger
0 comments:
Post a Comment