首页 > 其他 > 详细

Hhh

时间:2014-11-17 13:57:13      阅读:277      评论:0      收藏: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;      
}
 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位*/}

Hhh

原文:http://www.cnblogs.com/liuchengchuxiao/p/4103326.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!