新微赢技术网

标题: 求助编写一个输出格式程序 [打印本页]

作者: 大师傅    时间: 2009-11-4 00:57
标题: 求助编写一个输出格式程序
求助编写一个程序,要求输人一个数,输出该数分别与1—10的数相乘的结果。输出格式如下:
请输入一个数:5

5x1=5 5x2=10
5x3=15 5x4=20
5x5=25 5x6=30
5x7=35 5x8=40
5x9=45 5x10=50

Prass any Key to continue
作者: ████    时间: 2009-11-4 00:57
这是什么格式啊?到底对齐还是不对齐啊?
作者: .`D.D`地`    时间: 2009-11-4 00:57
对齐
作者: 小嘛怪    时间: 2009-11-4 00:57
http://bbs.bc-cn.net/viewthread.php?tid=98713
作者: 最ヅ后愛上你    时间: 2009-11-4 00:57
void print(int n)
{
int k=0; //k用来控制换行
for(int i=1;i<=10;i++)
{
k++;
int s=n*i;
cout<<s<<" ";
if(k%2==0)
cout<<endl;
}
}
作者: jane    时间: 2009-11-4 00:57
大哥.多看看书好不好?
作者: 我是哈密瓜耶    时间: 2009-11-4 00:57
如果想学好一门语言,一定要知道怎么去想,哪怕去花一天的时间,就算是查到了,想了,也比你这样发帖得到答案收获多




欢迎光临 新微赢技术网 (http://bbs.weiying.cn/) Powered by Discuz! X3.2