码迷,mamicode.com
首页 > 其他好文 > 详细

Hhh

时间:2014-11-17 13:58:41      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   sp   for   

 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

标签:style   blog   http   io   color   ar   os   sp   for   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!