herrDeng網內搜尋

自訂搜尋

Ads

2009年3月24日 星期二

用 while loop

用 while loop 算

s=3*3+4*4+....88*88

63 則留言:

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    i=3;
    s=0;
    while(i<=88)
   
    {s=s+i*i;
    i++;
}
   
    printf("%d",s);
    system ("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s=0,i=3;
    while (i<=88)
    {
    s=s+i*i;
    i++;
     }
    printf("%d",s);
    system("pause");
    return 0;   
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
 int i,j;
 j=0;
 i=3;
 while(i<=88)   {
   j=j+                                                                                                                                        i*i;
   i++;
   
    }
 printf("%d",j);
 system("pause");
 return 0;  
}


Ans:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
 int x ,y=0,i=3;
 while(i<=88)
 {
  x=i*i;
  i++;
  y=y+x;
 }
 printf("%d",y);
 system("pause");
 return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int i,s;
    s=0;
    i=3;
    while(i<=88){
      s=s+i*i;
      i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s=0,i=3;
    while(i<=88)
    {
            s=s+i*i;
            i++;
    }
    printf("%d",s);
    system("Pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s=0, i=3;
    while (i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d" ,s);
    system("pause");
    return 0;
}

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int i=3 , s ;
    s=0;
    while (i<=88){
          s=s+i*i;
          i++;
          }
          printf("%d",s);
    system("pause");
    return 0;
   
         
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int sum,i;
    sum=0;
    i=3;
    while(i<=88)
        {
                 sum=sum+i*i;
                 i++;
                 }
    printf("%d",sum);
    system("pause");
    return 0;
}

Ans 231039

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int  i,j;
    i=3;
    j=0;
    while(i<=88) {
    j=j+i*i;
    i++;
    }
        printf("%d",j);
        system("pause");
        return 0;     
}             





231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int s,i;
    s=0;
    i=3;
    while(i<=88)
    {
        s+=i*i;
        i++;
        }
        printf ("%d",s);
        system ("pause");
        return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i=3,s;
    s=0;
    while (i<=88){
    s=s+i*i;
    i++;
    }
      printf("%d\n",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int sum=0,i=3;
    while (i<=88)
    {
    sum+=i*i;
    i++;
       }
    printf("%d",sum);
    system("pause");
    return 0;
}

Ans:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int x,y=0,i=3;
    while(i<=88)
    {
      x=i*i;
      i++;
      y=y+x;
    }
    printf("%d\n",y);
system ("pause");
return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i,s;
    s=0;
    i=3;
    while (i<=88){
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;  
    }

231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i=3,y=0,s;
    while (i<=88)
    {         
          s=i*i;
          i++;
          y=s+y;
     }
    printf("%d\n",y);
    system("pause");
    return 0;
}

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int s,i;
    s=0;
    i=3;
    while (i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int s,i;
    s=0;
    i=3;
    while (i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
int i,s;
s=0;
i=3;
while (i<=88){
s +=i*i;
i++;}
printf("%d",s);
system("pause");
return 0;
}



解答:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s=0,i=3;
    while(i<=88)
    {
     s+=i*i;
     i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}


答案:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s=0,i=3;
    while(i<=88)
    {
     s=s+i*i;
     i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

答案:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int i,j;
    i=3;
    j=0;
    while(i<=88)
     {
      j=j+i*i;
      i++;        
      }
    printf("%d",j);          
    system("pause");
    return 0;
}     
   


ANS:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
main()
{
      int s,i;
      s=0,i=3;
      while(i<=88)
      {
      s=s+i*i;
      i++;
      }
      printf("%d",s);
      system("pause");
      return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int s=0,i=3;
    while(i<=88)
    {
     s=s+i*i;
     i++;
     }
     printf("%d",s);
     system("pause");
     return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int s=0 ,i=3;
    while (i<=88)
    {
    s=s+i*i;
    i++;
   }
    printf("%d",s);
    system ("pause");
    return 0 ;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main  ()
{
    int sum=0;
    int i=3;
    while (i<=88)
{
     sum+=i*i;
     i++;
}
printf ("%d",sum);
system ("Pause");
return 0;
}  

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
int s,i;
s=0;
i=3;
while (i<=88)
{
s=s+i*i;
i++;
}
printf("%d",s);
system("pause");
return 0;
}


231039

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int i=3 , s;
    s=0;
    while(i<=88){
         s=s+i*i;
         i++;
         }
         printf("%d",s);
         system("pause");
         return 0;
}

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
     int i=3,s=0;
     while(i<=88)
     {  
      s=s+i*i;
      i++;
     }
      printf("%d",s);
      system ("pause");
      return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
int s,i;
s=0;
i=3;
while (i<=88)
{
s=s+i*i;
i++;}
printf("%d",s);
system("pause");
return 0;
}

231039

匿名 提到...

<P>#include &lt;stdio.h&gt;</P>
<P>#include&lt;stdlib.h&gt;</P>
<P>int sum=0;</P>
<P>int i=3;</P>
<P>while(i&lt;=88)</P>
<P>{</P>
<P>sum+=i*i;</P>
<P>i++;</P>
<P>}</P>
<P>printf("%d",sum);</P>
<P>system ("pause");</P>
<P>return 0;</P>
<P>}</P>

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    s=0;
    i=3;
    while(i<=88)
    {
      s=s+i*i;
      i++;
    }
    printf("%d",s);
    system("Pause");
    return 0;
}

匿名 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int s=0,i=3 ;
    while (i<=88)
    {
    s=s+i*i;
    i++;
            }
    printf ("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main  ()
{
    int sum=0;
    int i=3;
    while (i<=88)
{
    sum+=i*i;
    i++;
}
printf ("%d",sum);
system ("pause");
return 0;
}


Ans:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int sum=0;
    int i=3;
    while (i<=88)
    {
          sum+=i*i;
          i++;
          }
          printf("%d",sum);
          system ("pause");
          return 0;
          }

ans:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
  int x , y=0 , i=3;
  while(i<=88)
  {
   x=i*i;
   i++;
   y=y+x;
  }
 printf("%d",y);
 system("pause");
 return 0 ;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main(){
int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
    }

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main(){
int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
    }

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main  ()
{
    int sum=0;
    int i=3;
    while (i<=88)
{
     sum+=i*i;
     i++;
}
printf ("%d",sum);
system ("Pause");
return 0;
}  

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    s=0;
    i=3;
    while(i<=88)
    {
      s=s+i*i;
      i++;
    }
    printf("%d",s);
    system("Pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main(){
int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
    }

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main  ()
{
    int sum=0;
    int i=3;
    while (i<=88)
{
     sum+=i*i;
     i++;
}
printf ("%d",sum);
system ("Pause");
return 0;
}  

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main(){
int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
    }

匿名 提到...

 #include <stdio.h>
 #include <stdlib.h>
 int main()
 {
      int s,i; s=0; i=3;
      while(i<=88) { s=s+i*i; i++; }
      printf("%d",s);
      system("Pause");
      return 0; }

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int i=3, s;
    s=0;
    while (i<=88){
           s=s+i*i;
           i++;      
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i; s=0;i=3;
    while(i<=88)
    {s=s+i*i; i++;}
    printf("%d",s);
    system("pause");
    return 0;
}

A:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
    int i=3, s;
    s=0;
    while (i<=88){
           s=s+i*i;
           i++;      
    }
    printf("%d",s);
    system("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main(){
int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
    }

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main(){
int s=0,i=3;
    while(i<=88)
    {
    s=s+i*i;
    i++;
    }
    printf("%d",s);
    system("pause");
    return 0;
    }

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
int i,j;
i=3;
j=0;
while(i<=88)
{
j=j+i*i;
i++;
}
printf("%d",j);
system("pause");
return 0;
}
答案:231039

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
 int main ()
 {
  int i=3 ,s=0;
  while  (i<=88)
  {
  s=s+i*i;
  i++;
  }
    printf("%d",s);
    system ("pause");
     return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
 int main ()
 {
  int i=3 ,s=0;
  while  (i<=88)
  {
  s=s+i*i;
  i++;
  }
    printf("%d",s);
    system ("pause");
     return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
 int main ()
 {
  int i=3 ,s=0;
  while  (i<=88)
  {
  s=s+i*i;
  i++;
  }
    printf("%d",s);
    system ("pause");
     return 0;
}

匿名 提到...

break和continue指令通常用在迴圈內

break是跳離迴圈的意思

continue是跳過後面程式碼的執行, 繼續下一個迴圈

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main ()
{
int i,s;
s=0;
i=3;
while(i<=88)
{
s=s+i*i;
i++;
}
printf("%d",s);
system("pause");
return 0;
}


答案231039

匿名 提到...

include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    i=3;
    s=0;
    while(i<=88)
   
    {s=s+i*i;
    i++;
}
   
    printf("%d",s);
    system ("pause");
    return 0;
}

匿名 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    i=3;
    s=0;
    while(i<=88)
   
    {s=s+i*i;
    i++;
}
   
    printf("%d",s);
    system ("pause");
    return 0;
}

b9733147 提到...

#include<stdio.h>
#include<stdlib.h>
int main()
{
    int i=3 , s ;
    s=0;
    while (i<=88){
          s=s+i*i;
          i++;
          }
          printf("%d",s);
    system("pause");
    return 0;
      
}

b9733162 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    i=3;
    s=0;
    while(i<=88)
   
    {s=s+i*i;
    i++;
}
   
    printf("%d",s);
    system ("pause");
    return 0;
}

b9733172 提到...

#include <stdio.h>
#include <stdlib.h>
int main()
{
    int s,i;
    i=3;
    s=0;
    while(i<=88)
   
    {s=s+i*i;
    i++;
}
   
    printf("%d",s);
    system ("pause");
    return 0;
}

Related Posts Plugin for WordPress, Blogger...

熱門文章