Hhh

 C++ Code  
1
2
3
4
5
6
7
8
9
 
 

 

#include<stdio.h>

int main()
{
    
  printf("hello world\n");

 return 0;      
}

 

 C++ Code 
1
2
3
4
5
6
7
8
9
#include<stdio.h>

int main()
{
    
  printf(
"hello world\n");

 
return 0;      
}
 C++ Code 
1
2
3
4
5
6
7
8
9
#include<stdio.h>

int main()
{
    
  printf("hello world\n");

 return 0;      
}


 

  1. #include "stdio.h"   
  2. int main()  
  3.  {int i,j,result;   
  4.  for (i=1;i<10;i++)  
  5.     { for(j=1;j<10;j++)  
  6.         {            result=i*j;  
  7.             printf("%d*%d=%-3d",i,j,result);/*-3d表示左对齐,占3位*/}
posted @ 2014-11-17 12:51  来杯绿茶  阅读(314)  评论(0编辑  收藏  举报