码迷,mamicode.com
首页 > 编程语言 > 详细

一道C++题目

时间:2016-10-26 00:45:33      阅读:227      评论:0      收藏:0      [点我收藏+]

标签:length   src   return   .com   std   cout   img   pre   main   

 1 #include <iostream>
 2 using namespace std;
 3 
 4 int main()
 5 {
 6     int length;
 7     cout << "样本输入:"<<endl; 
 8     cin >> length;
 9     cout << "样本输出:"<<endl; 
10     for (int i = 1; i <= length; i++) 
11     {
12         for (int j = 1; j <= length; j++) 
13         {
14              cout << " ("<<i<<","<<j<<") ";
15              if (j == length) 
16              {
17                  cout << "\n";    
18              }
19         }
20     }
21     return 0;
22 }

技术分享

一道C++题目

标签:length   src   return   .com   std   cout   img   pre   main   

原文地址:http://www.cnblogs.com/xqhu/p/5998732.html

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