黑暗协会吧 关注:231贴子:17,935
  • 2回复贴,共1
using namespace std;
void main()
{
int temp=0;
for(int x=1;x<10;x++)
{
for(int y=x;y<10;y++)
{
temp=x*y;
cout<<y<<'*'<<x<<'='<<temp<<"\t";
}
cout<<"\n";
}
}


IP属地:上海来自Android客户端1楼2015-05-18 14:44回复
    #include <stdio.h>
    void main()
    {
    int i,j;
    for (i=1;i<=9;i++)
    {
    for(j=1;j<=9;j++)
    printf("%d*%d=%2d ",i,j,i*j);
    printf("\n");
    }
    }


    2楼2015-05-18 14:47
    回复
      1) It costs more to kill them than to keep them alive.
      2) Dying is too easy, I would rather die than be kept in prison for the rest of my life.
      3) We run the risk of killing innocent people.
      4) It is ineffectual as a crime deterrent.
      5) It sends the message that killing is great as long as the government does it.


      4楼2015-12-21 16:15
      回复