Hhh

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

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

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

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

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

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

 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位*/}
原文地址:https://www.cnblogs.com/liuchengchuxiao/p/4103326.html